bi_scale_fill {biscale} | R Documentation |
Applies the selected palette as the fill aesthetic when geom_sf
is used and the bi_class
variable is given as the fill
in the aesthetic
mapping.
bi_scale_fill(pal, dim = 3, flip_axes = FALSE, rotate_pal = FALSE, ...)
pal |
A palette name or a vector containing a custom palette. See
the help file for |
dim |
The dimensions of the palette, either |
flip_axes |
A logical scalar; if |
rotate_pal |
A logical scalar; if |
... |
Arguments to pass to |
A ggplot
object with the given bivariate palette applied to the data.
bi_pal
# load dependencies
library(ggplot2)
# add breaks, 3x3
data <- bi_class(stl_race_income, x = pctWhite, y = medInc, style = "quantile", dim = 3)
# create map
plot <- ggplot() +
geom_sf(data = data, aes(fill = bi_class), color = "white", size = 0.1, show.legend = FALSE) +
bi_scale_fill(pal = "GrPink", dim = 3)