diff --git a/code/mangal/03_plots.R b/code/mangal/03_plots.R new file mode 100644 index 0000000..654957e --- /dev/null +++ b/code/mangal/03_plots.R @@ -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() \ No newline at end of file