jtools::theme_apa
themeApaRaw.Rd
Set a APA theme and additional options to a graph like
other themes, graph + themeApaRaw()
.
themeApaRaw(
legend.pos = getGraphOption("legend.position"),
legend.use.title = FALSE,
legend.font.size = getGraphOption("axis.title.cex"),
font.size = getGraphOption("fontsize"),
x.font.size = getGraphOption("fontsize"),
y.font.size = getGraphOption("fontsize"),
facet.title.size = getGraphOption("fontsize"),
remove.y.gridlines = TRUE,
remove.x.gridlines = TRUE,
family = getGraphOption("family"),
axisTickLength = getGraphOption("axisTickLength"),
axisTickWidth = getGraphOption("axisTickWidth")
)
One of "right"
, "left"
, "top"
, "bottom"
,
"topleft"
, "topright"
, "topmiddle"
, "bottomleft"
,
"bottomright"
, or "bottommiddle"
.
Positions the legend, which will layer on top of any geoms, on the plane.
Logical. Specify whether to include a legend title.
Defaults to FALSE
.
Integer indicating the font size of the labels in the legend. Default and APA-recommended is 12, but if there are many labels it may be necessary to choose a smaller size.
General font size.
Font size of x-axis label.
Font size of x-axis label.
Font size of facet labels.
Should the coordinate grid on the y-axis (horizontal lines) be removed? Default is TRUE.
Should the coordinate grid on the x-axis (vertical lines) be removed? Default is TRUE.
global font family.
length of axis ticks.
width of axis ticks.
This function is a modification of jtools::theme_apa
that applies a theme to ggplot2
figures with a
style that is roughly in line with APA guidelines. Users may need to
perform further operations for their specific use cases.
There are some things to keep in mind about APA style figures:
Main titles should be written in the word processor or typesetter rather than on the plot image itself.
In some cases, users can forgo a legend in favor of describing the figure in a caption (also written in the word processor/typesetter).
Legends are typically embedded on the coordinate plane of the figure
rather than next to it, as is default in ggplot2
.
Use of color is generally discouraged since most of the applications for which APA figures are needed involve eventual publication in non-color print media.
There are no hard and fast rules on font size, though APA recommends choosing between 8 and 14-point. Fonts in figures should be sans serif.
Because APA style calls for positioning legends on the plane itself, this
function includes options for choosing a position–top left, top right, bottom
left, bottom right–to place the legend. ggplot2
provides no obvious
way to automatically choose a position that overlaps least with the geoms (the
plotted data), so users will need to choose one.
Facetting is supported, but APA guidelines are considerably less clear for such situations.
This theme was created with inspiration from Rudolf Cardinal's
code, which
required updating for newer versions of ggplot2
and adaptations for
APA style.