The goal of bodymap is to make plotting of body-related frequencies or intensities feasible.
You can install the development version of bodymap like so:
remotes::install_github("benediktclaus/bodymap")
This is a basic example which shows you how to solve a common problem:
library(bodymap)
library(ggplot2)
base_plot <- ggplot(bodymap) +
geom_sf()
base_plot +
theme_void()