1
0

this time I did the labeling right

This commit is contained in:
Matthew Gaughan 2026-01-29 20:35:53 -08:00
parent 7c587413aa
commit 337268afcc
2 changed files with 246 additions and 246 deletions

View File

@ -65,7 +65,7 @@ c2_relevant <- core_df |>
filter(week_index >= -104 & week_index <= 13) |>
filter(author_email != "jenkins-bot@gerrit.wikimedia.org") |>
filter(is_http) |>
mutate(case = "c1") |>
mutate(case = "c2") |>
select(authored_date, commit_date, author_name, author_email, message, case)
c3_relevant <- core_df |>
@ -73,7 +73,7 @@ c3_relevant <- core_df |>
filter(week_index >= -83 & week_index <= 13) |>
filter(author_email != "jenkins-bot@gerrit.wikimedia.org") |>
filter(is_http) |>
mutate(case = "c1") |>
mutate(case = "c3") |>
select(authored_date, commit_date, author_name, author_email, message, case)
possibly_relevant <- rbind(c1_relevant, c2_relevant, c3_relevant)