Skip to content

Commit

Permalink
had to fix the superbowl
Browse files Browse the repository at this point in the history
  • Loading branch information
benny-dreyf committed Feb 4, 2023
1 parent 8fdd8a1 commit 2fbebdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/nfl_season_schedule.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ nfl_season_schedule<-function(year){
dplyr::filter(week != 'Week' & date != 'Playoffs') |>
dplyr::mutate(week= case_when(week == 'WildCard' ~ '19',
week == 'Division' ~ '20',
week == 'ConfChamp' & date == '2023-01-29' ~ '21',
week == 'ConfChamp' & date == '2023-02-12' ~ '22',
week == 'ConfChamp' ~ '21',
week == 'SuperBowl' ~ '22',
T ~ week),
week= as.numeric(week)) |>
# dplyr::filter(week >= 10) |>
Expand Down

0 comments on commit 2fbebdd

Please sign in to comment.