Learn R Programming

neuropsychology (version 0.3.0)

theme_neuropsychology: A minimal theme for ggplot2

Description

A minimal theme for ggplot2.

Usage

theme_neuropsychology(legend.position="right", legend.text.size=20, axis.title.size=20, axis.text.size=15)

Arguments

legend.position
One of the following: "right", "left", "top" or "bottom".
legend.text.size
The size of the legend text (usually the numbers).
axis.title.size
The size of the legend title.
axis.text.size
The size of the axis titles.

Details

For an even better result, don't forget to change the colour palette and to add a space between the axis title and the axix (see the example below).

Examples

Run this code
require(ggplot2)
require(neuropsychology)

df <- personality

ggplot(df, aes(x=Age, y=Negative_Affect, colour=Sex, fill=Sex)) +
  geom_point() +
  geom_smooth(method="lm", fullrange=TRUE) +

  theme_neuropsychology() +

  xlab("\nAge") +
  ylab("Negative Affect\n") +
  scale_fill_brewer(palette="Set1",direction=-1) +
  scale_colour_brewer(palette="Set1",direction=-1)

Run the code above in your browser using DataLab