Tableau color scales (discrete)
Categorical (qualitative) color scales used in Tableau.
Use the function scale_colour_gradient_tableau()
for the sequential
and scale_colour_gradient2_tableau()
for the diverging continuous
color scales from Tableu.
scale_colour_tableau( palette = "Tableau 10", type = "regular", direction = 1, ... ) scale_fill_tableau( palette = "Tableau 10", type = "regular", direction = 1, ... ) scale_color_tableau( palette = "Tableau 10", type = "regular", direction = 1, ... )
palette |
Palette name. See |
type |
Palette type. One of |
direction |
If 1, the default, then use the original order of colors. If -1, then reverse the order. |
... |
Other arguments passed on to |
tableau_color_pal()
for references.
Other colour tableau:
scale_colour_gradient2_tableau()
,
scale_colour_gradient_tableau()
,
tableau_color_pal()
,
tableau_gradient_pal()
library("ggplot2") p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg, colour = factor(gear))) + facet_wrap(~am) + theme_igray() palettes <- ggthemes_data[["tableau"]][["color-palettes"]][["regular"]] for (palette in head(names(palettes), 3L)) { print(p + scale_colour_tableau(palette) + ggtitle(palette)) } # the order of colour can be reversed p + scale_color_tableau(direction = -1)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.