new plot for results section
This commit is contained in:
parent
86ee932c67
commit
90594d1ce3
@ -4,6 +4,21 @@ library(dplyr)
|
||||
dsl_csv <-"~/dsl/111725_DSL_frame.csv"
|
||||
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 |>
|
||||
group_by(week_index, source, isAuthorWMF)|>
|
||||
summarise(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user