View source: R/miles_palette.R
miles_pal | R Documentation |
miles palette
miles_pal(n, type = c("discrete", "continuous"), reverse = FALSE)
scale_color_miles(n, type = "discrete", reverse = FALSE, ...)
scale_colour_miles(n, type = "discrete", reverse = FALSE, ...)
scale_fill_miles(n, type = "discrete", reverse = FALSE, ...)
n |
number of colors |
type |
discrete or continuous |
reverse |
reverse order, Default: FALSE |
... |
Arguments passed on to
|
library(scales)
show_col(miles_pal()(10))
library(ggplot2)
ggplot(airquality, aes(x = Day, y = Temp,
group = as.factor(Month), color = as.factor(Month))) +
geom_point(size = 2.5) +
scale_color_miles()
ggplot(airquality, aes(x = Day, y = Temp,
group = as.factor(Month), color = as.factor(Month))) +
geom_point(size = 2.5) +
scale_colour_miles()
ggplot(mpg, aes(displ)) +
geom_histogram(aes(fill = class),
col = "black", size = 0.1) +
scale_fill_miles()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.