Get player season averages for predicted points added (PPA)
cfbd_metrics_ppa_players_season(
year = NULL,
team = NULL,
conference = NULL,
position = NULL,
athlete_id = NULL,
threshold = NULL,
excl_garbage_time = FALSE
)
(Integer required): Year, 4 digit format (YYYY)
(String optional): D-I Team
(String optional): Conference abbreviation - S&P+ information by conference Conference abbreviations P5: ACC, B12, B1G, SEC, PAC Conference abbreviations G5 and FBS Independents: CUSA, MAC, MWC, Ind, SBC, AAC
(string optional): Position abbreviation of the player you are searching for. Position Group - options include:
Offense: QB, RB, FB, TE, OL, G, OT, C, WR
Defense: DB, CB, S, LB, DE, DT, NT, DL
Special Teams: K, P, LS, PK
(Integer optional): Athlete ID filter for querying a single athlete
Can be found using the cfbd_player_info()
function.
(Integer optional): Minimum threshold of plays.
(Logical default FALSE): Select whether to exclude Garbage Time (TRUE or FALSE)
cfbd_metrics_ppa_players_season()
- A data frame with 23 variables:
season
: integer.Season.
athlete_id
: character.Athlete referencing id.
name
: character.Athlete name.
position
: character.Athlete Position.
team
: character.Team name.
conference
: character.Team conference.
countable_plays
: integer.Number of plays which can be counted.
avg_PPA_all
: double.Average overall predicted points added (PPA).
avg_PPA_pass
: double.Average passing predicted points added (PPA).
avg_PPA_rush
: double.Average rushing predicted points added (PPA).
avg_PPA_first_down
: double.Average 1st down predicted points added (PPA).
avg_PPA_second_down
: double.Average 2nd down predicted points added (PPA).
avg_PPA_third_down
: double.Average 3rd down predicted points added (PPA).
avg_PPA_standard_downs
: double.Average standard down predicted points added (PPA).
avg_PPA_passing_downs
: double.Average passing down predicted points added (PPA).
total_PPA_all
: double.Total overall predicted points added (PPA).
total_PPA_pass
: double.Total passing predicted points added (PPA).
total_PPA_rush
: double.Total rushing predicted points added (PPA).
total_PPA_first_down
: double.Total 1st down predicted points added (PPA).
total_PPA_second_down
: double.Total 2nd down predicted points added (PPA).
total_PPA_third_down
: double.Total 3rd down predicted points added (PPA).
total_PPA_standard_downs
: double.Total standard down predicted points added (PPA).
total_PPA_passing_downs
: double.Total passing down predicted points added (PPA).
# NOT RUN {
try(cfbd_metrics_ppa_players_season(year = 2019, team = "TCU"))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab