This vignette focuses on the available ggplot2
themes in
INBOtheme
. They mainly control the looks of the axes,
background, legend, … Some themes also impact the schemes when using a
colour or fill along a variable. We illustrate that in
vignette("colour", package = "INBOtheme")
.
The ggplot2
package must be loaded prior to
INBOtheme
. Loading INBOtheme
sets
inbo_theme()
as default theme and
inbo_steun_blauw
as default colour for the
geoms
. Note how we use theme_set()
and
switch_colour()
. This applies the theme and colour to all
subsequent plots without the need to change the ggplot2
code.
INBOtheme
Add the following code after loading the ggplot2
or
tidyverse
package and before creating the
ggplot2
plots.
In case you need to change the default font size or background add the code below after loading the package.
# Prepare the data for the figures
d <- data.frame(
x = "Sphinx of black quartz, judge my vow",
y = "Sphinx of\nblack quartz,\njudge my vow"
)
data("esoph")
cancer <- esoph
cancer$Age <- cancer$agegp
cancer$Alcohol <- cancer$alcgp
cancer$Tabacco <- cancer$tobgp
cancer$Proportion <- cancer$ncases / (cancer$ncases + cancer$ncontrols)
theme_inbo()
theme_inbo()
with default backgroundggplot(d, aes(x = x, y = x, label = y)) +
geom_text(size = 8) +
labs(x = d$x, y = d$x, title = d$x, colour = d$y) +
theme(axis.text.y = element_text(angle = 90, hjust = 0.5))
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_wrap(~Age, scales = "free") +
ggtitle("cancer dataset")
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_grid(alcgp ~ tobgp, scales = "free") +
ggtitle("cancer dataset")
theme_inbo()
with transparent backgroundggplot(d, aes(x = x, y = x, label = y)) +
geom_text(size = 8) +
labs(x = d$x, y = d$x, title = d$x, colour = d$y) +
theme(axis.text.y = element_text(angle = 90, hjust = 0.5))
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_wrap(~Age, scales = "free") +
ggtitle("cancer dataset")
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_grid(alcgp ~ tobgp, scales = "free") +
ggtitle("cancer dataset")
theme_vlaanderen2015()
theme_vlaanderen2015()
with default backgroundggplot(d, aes(x = x, y = x, label = y)) +
geom_text(size = 8) +
labs(x = d$x, y = d$x, title = d$x, colour = d$y) +
theme(axis.text.y = element_text(angle = 90, hjust = 0.5))
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_wrap(~Age, scales = "free") +
ggtitle("cancer dataset")
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_grid(alcgp ~ tobgp, scales = "free") +
ggtitle("cancer dataset")
theme_vlaanderen2015()
with transparent backgroundggplot(d, aes(x = x, y = x, label = y)) +
geom_text(size = 8) +
labs(x = d$x, y = d$x, title = d$x, colour = d$y) +
theme(axis.text.y = element_text(angle = 90, hjust = 0.5))
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_wrap(~Age, scales = "free") +
ggtitle("cancer dataset")
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_grid(alcgp ~ tobgp, scales = "free") +
ggtitle("cancer dataset")
theme_elsevier()
Note that theme_elsevier()
uses a base font size of 7.
Use that default when preparing plots for a paper.
ggplot(d, aes(x = x, y = x, label = y)) +
geom_text(size = 8) +
labs(x = d$x, y = d$x, title = d$x, colour = d$y) +
theme(axis.text.y = element_text(angle = 90, hjust = 0.5))
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_wrap(~Age, scales = "free") +
ggtitle("cancer dataset")
ggplot(cancer, aes(x = Proportion)) +
geom_histogram(binwidth = 0.05) +
facet_grid(alcgp ~ tobgp, scales = "free") +
ggtitle("cancer dataset")