ggthemes (version 3.4.0)

scale_shape_stata: 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

Run this code
# NOT RUN {
library("ggplot2")
p <- ggplot(mtcars) +
     geom_point(aes(x = wt, y = mpg, shape = factor(gear))) +
     facet_wrap(~am)
p + theme_stata() + scale_shape_stata()
# }

Run the code above in your browser using DataCamp Workspace