scale_colour_gradient2_tableau | R Documentation |
Continuous color scales using the diverging color scales in Tableau. See \funclinkscale_colour_tableau for Tabaleau discrete color scales, and \funclinkscale_colour_gradient_tableau for sequential color scales.
scale_colour_gradient2_tableau(
palette = "Orange-Blue Diverging",
...,
na.value = "grey50",
guide = "colourbar"
)
scale_fill_gradient2_tableau(
palette = "Orange-Blue Diverging",
...,
na.value = "grey50",
guide = "colourbar"
)
scale_color_gradient2_tableau(
palette = "Orange-Blue Diverging",
...,
na.value = "grey50",
guide = "colourbar"
)
palette |
Palette name.
|
... |
Arguments passed to |
na.value |
Colour to use for missing values |
guide |
Type of legend. Use |
Other colour tableau:
scale_colour_gradient_tableau()
,
scale_colour_tableau()
,
tableau_color_pal()
,
tableau_gradient_pal()
library("ggplot2")
df <- data.frame(
x = runif(100),
y = runif(100),
z1 = rnorm(100),
z2 = abs(rnorm(100))
)
p <- ggplot(df, aes(x, y)) + geom_point(aes(colour = z2))
palettes <-
ggthemes_data[["tableau"]][["color-palettes"]][["ordered-diverging"]]
for (palette in head(names(palettes))) {
print(p + scale_colour_gradient2_tableau(palette) +
ggtitle(palette))
}
# If you need to reverse a palette, use a transformation
p + scale_colour_gradient2_tableau(trans = "reverse")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.