Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 626 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 626 Bytes

bodymap

The goal of bodymap is to make plotting of body-related frequencies or intensities feasible.

Installation

You can install the development version of bodymap like so:

remotes::install_github("benediktclaus/bodymap")

Example

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()