From c9d06dba8b9372f4db59a4cb418fe9d051feee3b Mon Sep 17 00:00:00 2001 From: Tanya Strydom Date: Fri, 2 Aug 2024 16:06:00 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20some=20experimenting=20with=20be?= =?UTF-8?q?nchmarking?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/mangal/03_plots.R | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 code/mangal/03_plots.R 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