This function retrieves information about the gameweeks and its details, such as the gameweek name, deadline time, finished status, current status, previous status, next status, highest score, average entry score, transfers made, chip plays, most selected player, most captained player, most vice-captained player, most transferred-in player, and the top player of the gameweek, along with their details.
Value
A tibble (data frame) with the following columns:
gameweekThe name of the gameweek.
gw_deadlineThe deadline datetime of the gameweek in UTC.
gw_finishedA logical value indicating whether the gameweek is finished.
data_checkedA logical value indicating whether the data for the gameweek was checked.
gw_currentA logical value indicating whether the gameweek is the active one.
gw_previousA logical value indicating whether the gameweek is the previous one.
gw_nextA logical value indicating whether the gameweek is the next one.
gw_highest_scoreThe highest score achieved by any FPL player in the gameweek.
gw_average_scoreThe average score of all FPL entries in the gameweek.
transfers_madeThe total number of transfers made in the gameweek.
chip_playsThe chip plays made in the gameweek.
player_most_selectedThe player who is most selected by FPL managers in the gameweek.
player_most_captainedThe player who is most captained by FPL managers in the gameweek.
player_most_vice_captainedThe player who is most vice-captained by FPL managers in the gameweek.
player_most_transferred_inThe player who is most transferred-in by FPL managers in the gameweek.
top_playerThe top-performing player in the gameweek.
top_player_infoAdditional details about the top-performing player of that gameweek.
Examples
fpl_gameweek_info()
#> # A tibble: 38 × 17
#> gameweek gw_deadline gw_finished data_checked gw_current gw_previous
#> <chr> <dttm> <lgl> <lgl> <lgl> <lgl>
#> 1 Gameweek… 2023-08-11 17:30:00 TRUE TRUE FALSE FALSE
#> 2 Gameweek… 2023-08-18 17:15:00 TRUE TRUE FALSE FALSE
#> 3 Gameweek… 2023-08-25 17:30:00 TRUE TRUE FALSE TRUE
#> 4 Gameweek… 2023-09-01 17:30:00 TRUE TRUE TRUE FALSE
#> 5 Gameweek… 2023-09-16 10:00:00 FALSE FALSE FALSE FALSE
#> 6 Gameweek… 2023-09-23 12:30:00 FALSE FALSE FALSE FALSE
#> 7 Gameweek… 2023-09-30 10:00:00 FALSE FALSE FALSE FALSE
#> 8 Gameweek… 2023-10-07 10:00:00 FALSE FALSE FALSE FALSE
#> 9 Gameweek… 2023-10-21 10:00:00 FALSE FALSE FALSE FALSE
#> 10 Gameweek… 2023-10-27 17:30:00 FALSE FALSE FALSE FALSE
#> # ℹ 28 more rows
#> # ℹ 11 more variables: gw_next <lgl>, gw_highest_score <int>,
#> # gw_average_score <int>, transfers_made <int>, chip_plays <list>,
#> # player_most_selected <chr>, player_most_captained <chr>,
#> # player_most_vice_captained <chr>, player_most_transferred_in <chr>,
#> # top_player <chr>, top_player_points <int>