Skip to contents

This function retrieves fixture information for a specific Premier League teams.

Usage

get_team_fixtures(team)

Arguments

team

A character vector of team abbreviations.

Value

A tibble (data frame) with fixture information including game details.

Examples

get_team_fixtures(c("ARS", "CHE"))
#> # A tibble: 66 × 7
#>    gw_id game_id team_h team_a kickoff_time        kickoff_time_provisional
#>    <int>   <int> <chr>  <chr>  <dttm>              <lgl>                   
#>  1     5      42 BOU    CHE    2023-09-17 13:00:00 FALSE                   
#>  2     5      43 EVE    ARS    2023-09-17 15:30:00 FALSE                   
#>  3     6      51 ARS    TOT    2023-09-24 13:00:00 FALSE                   
#>  4     6      55 CHE    AVL    2023-09-24 13:00:00 FALSE                   
#>  5     7      62 BOU    ARS    2023-09-30 14:00:00 FALSE                   
#>  6     7      64 FUL    CHE    2023-10-02 19:00:00 FALSE                   
#>  7     8      71 ARS    MCI    2023-10-08 15:30:00 FALSE                   
#>  8     8      73 BUR    CHE    2023-10-07 14:00:00 FALSE                   
#>  9     9      84 CHE    ARS    2023-10-21 16:30:00 FALSE                   
#> 10    10      91 ARS    SHU    2023-10-28 14:00:00 FALSE                   
#> # ℹ 56 more rows
#> # ℹ 1 more variable: fpl_game_code <int>