scales-intro-sv.Rmd
För bakgrund till The Grammar of Graphics och R-paketet ggplot2, se https://ggplot2.tidyverse.org/
Visa färgerna i paletten.
Jfr https://bitbucket.org/cancercentrum/rccshiny/src/1.10.0/R/rcc2PlotLine.R#lines-120
Exempel på använding av standardskalan för estetiken färg (colour
).
p1 <- ggplot(mpg, aes(x = displ, y = hwy, colour = class)) +
geom_point()
p1
Använd RCC-skalan.
p1 + theme_minimal() + scale_colour_rcc()
Exempel på använding av standardskalan för estetiken fyllning (fill
).
Använd RCC-skalan.
p2 + theme_minimal() + scale_fill_rcc()
p2 + theme_minimal() + scale_fill_rcc(direction = -1)