scale_manual: msand colors and fills for ggplot2.

scale_manualR Documentation

msand colors and fills for ggplot2.

Description

The msand scales add colors that work nicely with theme_msand().

@details

scale_colour_msand

For use when colour is specified as an aes() in a ggplot.

scale_fill_msand

For use when fill is specified as an aes() in a ggplot.

The msand scales add colors that work nicely with theme_msand().

@details

scale_colour_msand2

For use when colour is specified as an aes() in a ggplot.

scale_fill_msand2

For use when fill is specified as an aes() in a ggplot.

Usage

scale_colour_msand(...)

scale_color_msand(...)

scale_fill_msand(...)

scale_colour_msand2(...)

scale_color_msand2(...)

scale_fill_msand2(...)

Arguments

...

common discrete scale parameters: name, breaks, labels, na.value, limits and guide. See discrete_scale() for more details

See Also

theme_msand()

theme_msand()

Examples

library(ggplot2)

diamonds %>%
    ggplot(aes(carat, price, colour = cut)) +
    geom_point() +
    scale_colour_msand() +
    theme_msand()

library(ggplot2)

diamonds %>%
    ggplot(aes(carat, price, colour = cut)) +
    geom_point() +
    scale_colour_msand2() +
    theme_msand()


MichaelSandilands/msand documentation built on Jan. 28, 2023, 8:27 p.m.