Get player usage metrics
cfbd_player_usage(
year = 2019,
team = NULL,
conference = NULL,
position = NULL,
athlete_id = NULL,
excl_garbage_time = FALSE
)(Integer required, default 2019): Year, 4 digit format (YYYY).
(String optional): Team - Select a valid team, D1 football
(String optional): Conference abbreviation - Select a valid FBS conference Conference abbreviations P5: ACC, B12, B1G, SEC, PAC Conference abbreviations G5 and FBS Independents: CUSA, MAC, MWC, Ind, SBC, AAC
(string optional): Position 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.
(Logical default FALSE): Select whether to exclude Garbage Time (TRUE/FALSE)
cfbd_player_usage() - A data frame with 14 variables:
season: integer.Player usage season.
athlete_id: character.Referencing athlete id.
name: character.Athlete name.
position: character.Athlete position.
team: character.Team name.
conference: character.Conference of team.
usg_overall: double.Player usage of overall offense.
usg_pass: double.Player passing usage percentage.
usg_rush: double.Player rushing usage percentage.
usg_1st_down: double.Player first down usage percentage.
usg_2nd_down: double.Player second down usage percentage.
usg_3rd_down: double.Player third down usage percentage.
usg_standard_downs: double.Player standard down usage percentage.
usg_passing_downs: double.Player passing down usage percentage.
# NOT RUN {
try(cfbd_player_usage(year = 2019, position = "WR", team = "Florida State"))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab