Description Usage Arguments Examples
View source: R/palette_farshchian.R
The farsh palette
1 2 3 4 5 6 7 8 9 10 11 | farshchian_khalse_pal(n, type = c("discrete", "continuous"), reverse = FALSE)
scale_color_farshchian(n, type = "discrete", reverse = FALSE, ...)
scale_colour_farshchian_khalse(
n,
type = c("discrete", "continuous"),
reverse = FALSE
)
scale_fill_farshchian_khalse(n, type = "discrete", reverse = FALSE, ...)
|
n |
number of colors |
type |
discrete or continuous |
reverse |
reverse order, Default: FALSE |
... |
Arguments passed on to
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | library(scales)
show_col(farshchian_khalse_pal()(5))
library(ggplot2)
ggplot(airquality, aes(x = Day, y = Temp,
group = as.factor(Month), color = as.factor(Month))) +
geom_point(size = 2.5) +
scale_color_farsh()
ggplot(airquality, aes(x = Day, y = Temp,
group = as.factor(Month), color = as.factor(Month))) +
geom_point(size = 2.5) +
scale_color_farsh()
ggplot(mpg, aes(displ)) +
geom_histogram(aes(fill = class), col = "black", size = 0.1) +
scale_fill_farsh()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.