scale_color_council: Color scale

View source: R/scale_fill_council.R

scale_color_councilR Documentation

Color scale

Description

Adapted from ggplot2::scale_fill_brewer()

Usage

scale_color_council(..., aesthetics = "colour")

Arguments

...

Arguments passed ggplot2::discrete_scale()

aesthetics

The names of the aesthetics that this scale works with.

Value

a Scale object

See Also

Other aesthetics: blue_cascade, colors, council.pal(), council_layout(), council_pal2(), map_council_continuous(), scale_fill_council(), theme_council()

Examples

## Not run: 
test <- tibble(x = c(1:8), y = c(1:8), col = c(1:8))
ggplot(test, aes(
  x = x, y = y,
  col = as.factor(col),
  fill = as.factor(col)
)) +
  geom_point(size = 4, pch = 21) +
  scale_color_council()

## End(Not run)

Metropolitan-Council/councilR documentation built on March 30, 2024, 2:43 a.m.