From e0839b11a86da91d4bca2ad395d2b18722a88972 Mon Sep 17 00:00:00 2001 From: mjgaughan Date: Sun, 23 Jun 2024 23:54:03 -0400 Subject: [PATCH] updating visuals --- R/popRDDAnalyssis.R | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/R/popRDDAnalyssis.R b/R/popRDDAnalyssis.R index 399f42c..fc73310 100644 --- a/R/popRDDAnalyssis.R +++ b/R/popRDDAnalyssis.R @@ -63,10 +63,11 @@ saveRDS(contrib_contrib_model, "final_models/0623_pop_contrib_contrib.rda") library(ggplot2) contrib_pop_readme |> - ggplot(aes(x = after_doc, y = log1pcount)) + + ggplot(aes(x = after_doc, y = log1pcount, col = as.factor(after_doc))) + + geom_violin() expanded_readme_data |> - ggplot(aes(x = after_doc, y = log1pcount, col = as.factor(after_doc))) + + ggplot(aes(x = after_doc, y = count, col = as.factor(after_doc))) + geom_violin() expanded_contrib_data |>