Skip to content

Commit

Permalink
fix articles
Browse files Browse the repository at this point in the history
  • Loading branch information
FlavioLeccese92 committed Feb 22, 2024
1 parent b024431 commit ec03ffb
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified man/figures/team-stats-court.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified man/figures/team-stats-radarchart.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion vignettes/articles/team-stats-court.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ showtext_auto()

```{r data}
CompetitionRounds <- getCompetitionRounds("E2023") %>%
filter(MinGameStartDate <= Sys.Date())
filter(MaxGameStartDate <= Sys.Date())
MaxRound <- max(CompetitionRounds$Round)
MaxGameDate <- format(as.Date(max(CompetitionRounds$MaxGameStartDate)),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/articles/team-stats-radar.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ showtext_auto()

```{r data}
CompetitionRounds <- getCompetitionRounds("E2023") %>%
filter(MinGameStartDate <= Sys.Date()) %>%
filter(MaxGameStartDate <= Sys.Date()) %>%
slice_head(n = 1)
MaxRound <- max(CompetitionRounds$Round)
Expand Down

0 comments on commit ec03ffb

Please sign in to comment.