1
0

new plot for results section

This commit is contained in:
Matthew Gaughan 2025-12-02 09:18:50 -08:00
parent 86ee932c67
commit 90594d1ce3

View File

@ -4,6 +4,21 @@ library(dplyr)
dsl_csv <-"~/dsl/111725_DSL_frame.csv" dsl_csv <-"~/dsl/111725_DSL_frame.csv"
dsl_df <- read.csv(dsl_csv, header = TRUE) dsl_df <- read.csv(dsl_csv, header = TRUE)
ggplot(
dsl_df,
aes(
x=as.factor(week_index),
y= (TTR/168),
fill=isAuthorWMF
)
) +
facet_grid(source ~ ., scales = "free_y") +
geom_boxplot() +
theme_minimal() +
scale_fill_viridis_d() +
labs(x = "Weeks from Release", y = "Time to Resolution (weeks)", title = "TTR by Task Creation Date")
weekly_summary <- dsl_df |> weekly_summary <- dsl_df |>
group_by(week_index, source, isAuthorWMF)|> group_by(week_index, source, isAuthorWMF)|>
summarise( summarise(