Skip to content

Commit

Permalink
🧪 some experimenting with benchmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
TanyaS08 committed Aug 2, 2024
1 parent c31d850 commit c9d06db
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions code/mangal/03_plots.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
library(tidyverse)

df <- read.csv("data/processed/mangal_summary.csv") %>%
pivot_longer(!id,
names_to = "statistic",
values_to = "val")

ggplot(df, aes(val)) +
geom_density() +
facet_wrap(vars(statistic),
scales = "free") +
theme_classic()

0 comments on commit c9d06db

Please sign in to comment.