Fill scale constructor for USSC colours

scale_fill_ussc(palette = "main", discrete = TRUE, reverse = FALSE, ...)

Arguments

palette

Character name of palette in ussc_pal (i.e. main, blue, light, dark, grey, mixed)

discrete

Boolean indicating whether colour aesthetic is discrete or not

reverse

Boolean indicating whether the palette should be reversed

...

Additional arguments passed to discrete_scale() or scale_fill_gradient(), used respectively when discrete is TRUE or FALSE

Examples

# Fill by discrete variable with different palette + remove legend (guide) ggplot2::ggplot(mpg, ggplot2::aes(manufacturer, fill = manufacturer)) + ggplot2::geom_bar() + ggplot2::theme(axis.text.x = ggplot2::element_text(angle = 45, hjust = 1)) + ussc::scale_fill_ussc(palette = "main", guide = "none")
#> Error in ggplot2::ggplot(mpg, ggplot2::aes(manufacturer, fill = manufacturer)): object 'mpg' not found
# Set colour transparency by calling alpha in the geom_...() command ggplot2::ggplot(mpg, ggplot2::aes(manufacturer, fill = manufacturer)) + ggplot2::geom_bar(alpha=0.7) + ggplot2::theme(axis.text.x = ggplot2::element_text(angle = 45, hjust = 1)) + ussc::scale_fill_ussc(palette = "main", guide = "none")
#> Error in ggplot2::ggplot(mpg, ggplot2::aes(manufacturer, fill = manufacturer)): object 'mpg' not found