Numeric. Base font size; other font sizes and margins are adjusted relative
to this.
base_family
Character. Base font family.
box
Logical. Indicates whether to draw a box around the plot.
Details
This theme is an adaptation of theme_bw. In ggplot2, themes set the
general aspect of the plot such as the color of the background, gridlines, the size and colour
of fonts.
# NOT RUN {# }# NOT RUN {# Copied from ?ggtheme p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg,
colour = factor(gear))) + facet_wrap(~ am)
p
p + theme_apa()
# }