Get Fantasy Premier League player's fixture-level statistics.
Source:R/player-info.R
fpl_player_fixture_stats.RdThis function retrieves detailed fixture-level statistics for a specific player in the Fantasy Premier League (FPL). You can obtain per-game season statistics including total points, starts, minutes played, goals scored, assists, clean sheets, goals conceded, and more.
Value
A tibble (data frame) with the following columns:
gameweekThe gameweek number.
game_idThe unique ID of the fixture.
opponentThe opponent team's name.
total_pointsTotal FPL points earned in the gameweek.
startsThe number of starts in the gameweek.
minutesThe total number of minutes played in the gameweek.
goals_scoredThe number of goals scored in the gameweek.
assistsThe number of assists provided in the gameweek.
clean_sheetsThe number of clean sheets in the gameweek.
goals_concededThe number of goals conceded in the gameweek.
own_goalsThe number of own goals scored in the gameweek.
penalties_savedThe number of penalties saved in the gameweek.
penalties_missedThe number of penalties missed in the gameweek.
yellow_cardsThe number of yellow cards received in the gameweek.
red_cardsThe number of red cards received in the gameweek.
savesThe number of saves made in the gameweek.
bonusThe bonus points earned in the gameweek.
bpsThe Bonus Points System (BPS) score in the gameweek.
influenceThe influence score in the gameweek.
creativityThe creativity score in the gameweek.
threatThe threat score in the gameweek.
ict_indexThe ICT (Influence, Creativity, Threat) index score in the gameweek.
xg_scoredThe expected goals scored in the gameweek.
xaThe expected assists in the gameweek.
xg_involvementThe expected goal involvements in the gameweek.
xg_concededThe expected goals conceded in the gameweek.
priceThe player's price for the gameweek.
selectedThe number of FPL managers who have selected the player for their team.
transfers_inThe number of transfers in for the player in the gameweek.
transfers_outThe number of transfers out for the player in the gameweek.
transfers_balanceThe net transfers balance for the player in the gameweek.
Examples
fpl_player_fixture_stats(player_id = 1)
#> Balogun's per game season statistics
#> # A tibble: 4 × 31
#> gameweek game_id opponent total_points starts minutes goals_scored assists
#> <int> <int> <chr> <int> <int> <int> <int> <int>
#> 1 1 2 NFO 0 0 0 0 0
#> 2 2 12 CRY 0 0 0 0 0
#> 3 3 21 FUL 0 0 0 0 0
#> 4 4 31 MUN 0 0 0 0 0
#> # ℹ 23 more variables: clean_sheets <int>, goals_conceded <int>,
#> # own_goals <int>, penalties_saved <int>, penalties_missed <int>,
#> # yellow_cards <int>, red_cards <int>, saves <int>, bonus <int>, bps <int>,
#> # influence <chr>, creativity <chr>, threat <chr>, ict_index <chr>,
#> # xg_scored <chr>, xa <chr>, xg_involvement <chr>, xg_conceded <chr>,
#> # price <dbl>, selected <int>, transfers_in <int>, transfers_out <int>,
#> # transfers_balance <int>