scale_color_met_c {MetBrewer} | R Documentation |
MetBrewer palettes for plotting with ggplot2
Description
Function for using MetBrewer
colors schemes in ggplot2
. Use scale_color_met_d
and scale_fill_met_d
for discrete scales and scale_color_met_c
and scale_fill_met_c
for continuous scales.
Usage
scale_color_met_c(name, direction = 1, ...)
Arguments
name |
Name of Palette. Choices are:
|
direction |
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed |
... |
Other arguments passed on to |
Examples
library(ggplot2)
ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Sepal.Length)) +
geom_point() +
scale_color_met_c("Isfahan1", direction=-1)