theme_neuropsychology: A minimal theme for ggplot2.

Description Usage Arguments Details Author(s) Examples

Description

A minimal theme for ggplot2.

Usage

1
2
3
4
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).

Author(s)

Dominique Makowski

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
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)

neuropsychology/neuropsychology.R documentation built on May 23, 2019, 4:27 p.m.