I am trying to find the list of aesthetics and geoms in the ggplot2
package for R and the problem that help(qplot
) does not yield any results. I can not find a way to invoke help for only aesthetics or geoms.
What is the correct way to invoke help for aesthetics in R?
The best approach I can think of is to look at
help(aes)
which gives links toWhich summarize the various
aes
sub groups.You would get to one of these if you were search for a particular
aes
theic (eghelp(alpha)
orhelp(group)
For a list of geoms, look at the index for the help, under
G
. Perhaps when the documentation forlayer
is completed (or started) it will spur a similar listing / sub grouping.You could also extract the relevant exported objects within the ggplot2 namespace using
ggplot2
has an unexported character vector.all_aesthetics
which contains all the possible aestheticsThe actual documentation has a detailed and very handy list as well