After some research I found the way to prevent an uninformative legend from displaying
... + opts(legend.position = "none")
Where can I find all the available "opts" for ggplot2?
|
The closest thing to a comprehensive list that I have been able to find is in the ggplot2 wiki on github. I think that most of the options are covered there with examples. Update:
If you would like to see the options that are in use on a current plot, you can use Update 2 With the transition to version 0.9.0 it's worth noting that the built in documentation has been dramatically improved, and the transition guide from 0.8.9 to 0.9.0 is also worth checking out. |
|||||
|
|
Entering in
will show a comprehensive listing of theme values and options. You can then follow the syntax to modify these attributes in opts(). |
|||
|
|
|
The The first place I would look for answers would be the However, since http://had.co.nz/ggplot2/book/ The example code for the chapter "Polishing your plots for publication" contains some well commented examples of using The ultimate source for information is of course the book it's self. If you find
After some further investigation, you may be able to find a relatively complete list of options by listing out the source of one of the "theme" functions such as |
|||||||||
|
|
Besides the obvious references to ggplot2 reference manual and to the graphs section of Cookbook for R, Hadley Wickham provides a nice opts() List on github. |
||||
|
|
|
All the options I've ever used have been explained in hadley's great ggplot2 book. |
|||
|
|
|
|
|||
|
|
opts()does. Anyway, there's a list (not sure it's complete) in the built-in help:?opts– naught101 Aug 24 '12 at 5:43optsis deprecated, it's now+ theme()– Brandon Bertelsen Nov 7 '12 at 4:02