sccolour {ggplot} | R Documentation |
Create a scale for categorical colours.
sccolour(plot = .PLOT, name="", h=c(0,270), l=60, c=90, alpha=1)
plot |
plot to add scale to |
name |
name of the scale (used in the legend) |
h |
Color Brewer palette to use, see brewer.pal for details. Note that palette type is chosen automatically. |
l |
|
c |
|
alpha |
Continuous variables will automatically be converted to categorical
using chop_auto
. You may want to use chop
to convert the values yourself for finer control.
This scale is automatically added when you have colour in your list of aesthetics. For finer control, you will need to set the scale yourself. See the example for some ideas.
Hadley Wickham <h.wickham@gmail.com>
p <- ggplot(movies, aes=list(x=mpaa, y=rating)) ggjitter(p, list(colour=rating)) ggjitter(p, list(colour=length)) ggjitter(p, list(colour=chop(length))) ggjitter(p, list(colour=chop(length,3))) sccolour(ggjitter(p, list(colour=chop(length,3))), 2)