InraeThemes is a collection of R templates, themes, and other graphical elements based on formats related to R and in accordance with the INRAE design system.
The goal of this :package: is to provide a easy to use themes and color palettes for INRAE engineers and researchers. These are an unofficial and opiniated templates.
To make the full use of this package, you will need the Raleway
font
that can be downloaded here
The package can be installed using:
# install.packages("remotes")
remotes::install_github("davidcarayon/InraeThemes")
Note: Older versions with Rmarkdown templates (i.e., 1.0.1) can still be downloaded using:
``` r
install.packages("remotes")
remotes::install_github("davidcarayon/InraeThemes@v1.0.1") ```
Customize your ggplots using INRAE’s colors with theme_inrae()
and/or
scale_<fill/color>_inrae()
.
Here are examples using the palmerpenguins dataset.
library(InraeThemes)
library(ggplot2)
library(palmerpenguins)
# If needed
# sysfonts::font_add_google("Raleway")
# Load the fonts
showtext::showtext_auto()
ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g, color = species)) +
geom_point(size = 3, alpha = 0.7) +
labs(
title = "Relation entre la longueur des nageoires et la masse corporelle",
subtitle = "Données des pingouins par espèce",
x = "Longueur des nageoires (mm)",
y = "Masse corporelle (g)"
) +
theme_inrae() +
scale_color_inrae()
ggplot(penguins, aes(x = species, y = body_mass_g, fill = species)) +
geom_boxplot(alpha = 0.7) +
labs(
title = "Masse corporelle des différentes espèces de pingouins",
x = "Espèce",
y = "Masse corporelle (g)"
) +
theme_inrae() +
scale_fill_inrae()
ggplot(penguins, aes(x = bill_length_mm, fill = species)) +
geom_histogram(binwidth = 2, position = "stack", color = "white") +
labs(
title = "Distribution de la longueur du bec des pingouins",
x = "Longueur du bec (mm)",
y = "Fréquence"
) +
theme_inrae() +
scale_fill_inrae()
ggplot(penguins, aes(x = flipper_length_mm, fill = species)) +
geom_density(alpha = 0.6) +
labs(
title = "Distribution de la longueur des nageoires par espèce",
x = "Longueur des nageoires (mm)",
y = "Densité"
) +
theme_inrae() +
scale_fill_inrae()
ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g, color = island)) +
geom_point(size = 3, alpha = 0.7) +
labs(
title = "Dimensions des nageoires et masse corporelle par espèce et île",
x = "Longueur des nageoires (mm)",
y = "Masse corporelle (g)"
) +
theme_inrae() +
scale_color_inrae() +
facet_wrap(~species)
This package also provides a {gt} theme with theme_inrae_gt()
:
library(gt)
tab <- penguins |>
head(10) |>
gt() |>
tab_header(
title = md("**Caractéristiques des pingouins**"),
subtitle = "Sous-titre du tableau"
) |>
theme_inrae_gt()
This package also provides a Sass theme built with {bslib}: bs_inrae(). Preview the theme with:
bslib::bs_theme_preview(bs_inrae())
And can be used in any Shiny app with :
ui <- fluidPage(
theme = InraeThemes::bs_inrae(),
...
)
This package provides an opinionated project directory structure for
data analysis which can be either used by going though
Projects > New Project > New Directory
in Rstudio or by using :
new_analysis("myproj")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.