@@ -69,10 +69,6 @@ submissions_stats <- get_submissions (dat [which (dat$stats), ], period = period
6969submissions_stats$type <- "stats"
7070submissions_stats$lty <- 1L
7171
72- index <- which (submissions_gen$date %in% submissions_stats$date)
73- index <- c (min (index) - 1L, index) # To ensure line joins to previous
74- submissions_gen <- submissions_gen [index, ]
75-
7672submissions <- rbind (submissions_all, submissions_gen, submissions_stats)
7773```
7874
@@ -409,10 +405,6 @@ rev_dur_stats <- get_rev_durations (dat_closed [which (dat_closed$stats), ])
409405rev_dur_stats$type <- "stats"
410406rev_dur_stats$lty <- 1L
411407
412- index <- which (rev_dur_gen$date %in% rev_dur_stats$date)
413- index <- c (min (index) - 1L, index) # To ensure line joins to previous
414- rev_dur_gen <- rev_dur_gen [index, ]
415-
416408rev_dur <- rbind (rev_dur_all, rev_dur_gen, rev_dur_stats)
417409```
418410
@@ -576,10 +568,6 @@ rev_hours_stats <- get_rev_hours (dat [which (dat$stats), ])
576568rev_hours_stats$type <- "stats"
577569rev_hours_stats$lty <- 1L
578570
579- index <- which (rev_hours_gen$date %in% rev_hours_stats$date)
580- index <- c (min (index) - 1L, index) # To ensure line joins to previous
581- rev_hours_gen <- rev_hours_gen [index, ]
582-
583571rev_hours <- rbind (rev_hours_all, rev_hours_gen, rev_hours_stats)
584572
585573# Then raw historgram data:
0 commit comments