Examples for 'ggthemes::theme_base'


Theme Base

Aliases: theme_base

Keywords:

### ** Examples

library("ggplot2")
Need help? Try Stackoverflow: https://stackoverflow.com/tags/ggplot2
p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg,
     colour = factor(gear))) + facet_wrap(~am)
p + theme_base()
plot of chunk example-ggthemes-theme_base-1
# Change values of par
par(fg = "blue", bg = "gray", col.lab = "red", font.lab = 3)
p + theme_base()
plot of chunk example-ggthemes-theme_base-1

[Package ggthemes version 4.2.4 Index]