diff --git a/073125-fossy-tasks-resolved.png b/073125-fossy-tasks-resolved.png index ad55fa4..1708213 100644 Binary files a/073125-fossy-tasks-resolved.png and b/073125-fossy-tasks-resolved.png differ diff --git a/p2/phab-new-task-plot-script.R b/p2/phab-new-task-plot-script.R index db68c89..d3652ab 100644 --- a/p2/phab-new-task-plot-script.R +++ b/p2/phab-new-task-plot-script.R @@ -49,16 +49,7 @@ new_tasks <- combined_count_df |> geom_vline(data = combined_df |> filter(source == "c3"), aes(xintercept = -3), linetype = "3313", color = "black", linewidth = 0.5) + - geom_text(data = data.frame(source = "c1", relative_week = -43, lengthened_commit_count = 0.95), - aes(x = relative_week, y = lengthened_commit_count, label = "Opt-In Testing Deployment"), - inherit.aes = FALSE, color = "black", size = 4) + geom_vline(xintercept = 0, linetype = "dashed", color = "black", linewidth = 0.5) + # Add vertical line at week 0 - geom_text(data = data.frame(source = "c2", relative_week = 8, lengthened_commit_count = 0.95), - aes(x = relative_week, y = lengthened_commit_count, label = "Wide Deployment"), - inherit.aes = FALSE, color = "black", size = 4) + - geom_text(data = data.frame(source = "c3", relative_week = -18, lengthened_commit_count = 0.95), - aes(x = relative_week, y = lengthened_commit_count, label = "Wide Deployment Announcement"), - inherit.aes = FALSE, color = "black", size = 4) + scale_fill_manual(values = affiliationColors, labels = c("False" = "Unaffiliated", "True" = "WMF-affiliated")) + @@ -81,5 +72,14 @@ new_tasks <- combined_count_df |> "c3" = "HTTP-deprecation (2015)" ))) new_tasks +#geom_text(data = data.frame(source = "c1", relative_week = -42.5, lengthened_commit_count = 0.95), +#aes(x = relative_week, y = lengthened_commit_count, label = "Opt-In Testing Deployment"), +#inherit.aes = FALSE, color = "black", size = 4) + +#geom_text(data = data.frame(source = "c2", relative_week = 7, lengthened_commit_count = 0.95), +# aes(x = relative_week, y = lengthened_commit_count, label = "Wide Deployment"), +# inherit.aes = FALSE, color = "black", size = 4) + +# geom_text(data = data.frame(source = "c3", relative_week = -16, lengthened_commit_count = 0.95), +# aes(x = relative_week, y = lengthened_commit_count, label = "Wide Deployment Announcement"), +# inherit.aes = FALSE, color = "black", size = 4) + ggsave(filename = "073125-fossy-tasks-resolved.png", plot = new_tasks, width = 15, height = 9, dpi = 800)