Displaying 1 result from an estimated 1 matches for "area_geom".
2008 Sep 24
1
qplot, stacked area, own colourscheme
..., xlab = "Year")
As I have those categories (cover grasses, cover herbs...) I would like
to assign special colours to each (for example "cover grasses" => dark
green, "cover open soil" => brown ...), but I did not get it so far.
I tried several variations with area_geom, scale_manual but without
success...
For example (which does not work, it just shows the standard colourscheme):
mycolorscheme <- c("khaki", "darkgreen",
"lightgreen", "yellow", "saddlebrown")
mycolors <- rep(mycolorscheme,3)
myplot &l...