A custom discrete colour and fill scales with colours from the PACTA sector palette.
Arguments
- sectors
A character vector. Specifies sector colours to use and their order. Run
unique(r2dii.plot:::sector_colours$label)to see available labels. Similar tovalueparameter inggplot2::scale_colour_manual().- ...
Other parameters passed on to
ggplot2::discrete_scale().
See also
Other plotting functions:
plot_emission_intensity(),
plot_techmix(),
plot_trajectory(),
prep_emission_intensity(),
prep_techmix(),
prep_trajectory(),
qplot_emission_intensity(),
qplot_techmix(),
qplot_trajectory(),
recode_metric_techmix(),
recode_metric_trajectory(),
scale_colour_r2dii(),
scale_colour_r2dii_tech(),
scale_fill_r2dii(),
scale_fill_r2dii_sector(),
scale_fill_r2dii_tech(),
spell_out_technology(),
theme_2dii(),
to_title()
Examples
library(ggplot2, warn.conflicts = FALSE)
ggplot(mpg) +
geom_point(aes(displ, hwy, color = class)) +
scale_colour_r2dii_sector()
ggplot(mpg) +
geom_histogram(aes(cyl, fill = class), position = "dodge", bins = 5) +
scale_fill_r2dii_sector()
