sccolour {ggplot} | R Documentation |
Create a scale for categorical colours.
sccolour(plot = .PLOT, name="", h=c(0,360), l=65, c=100, alpha=1)
plot |
plot to add scale to |
name |
name of the scale (used in the legend) |
h |
range of hues to use |
l |
luminance value |
c |
chroma value |
alpha |
alpha value |
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)