scale_shape_stata {ggthemes}R Documentation

Stata shape scale

Description

See stata_shape_pal for details.

Usage

scale_shape_stata(...)

Arguments

...

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

Examples

library("ggplot2")

p <- ggplot(mtcars) +
     geom_point(aes(x = wt, y = mpg, shape = factor(gear))) +
     facet_wrap(~am)
p + theme_stata() + scale_shape_stata()

[Package ggthemes version 3.5.0 Index]