Examples for 'ggthemes::theme_calc'


Theme Calc

Aliases: theme_calc

Keywords:

### ** Examples

library("ggplot2")

p <- ggplot(mtcars) +
     geom_point(aes(x = wt, y = mpg, colour = factor(gear))) +
     facet_wrap(~am) + theme_calc()
p + scale_color_calc()
plot of chunk example-ggthemes-theme_calc-1
q <- ggplot(mtcars) +
     geom_point(aes(x = wt, y = mpg, shape = factor(gear))) +
     facet_wrap(~am) +
     theme_calc()
q + scale_shape_calc()
plot of chunk example-ggthemes-theme_calc-1

[Package ggthemes version 4.2.4 Index]