load_espn_cfb_percentiles: *Load college football team percentile profiles from the...

View source: R/load_espn_cfb.R

load_espn_cfb_percentilesR Documentation

Load college football team percentile profiles from the SportsDataverse data repo

Description

Loads season-level team percentile profiles – one row per team with league-percentile placements across the summary metrics. Published to the espn_cfb_percentiles release tag on the sportsdataverse-data repo.

Usage

load_espn_cfb_percentiles(
  seasons = most_recent_cfb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given college football seasons. Published coverage runs 2004 through the most recent season. Pass seasons = TRUE for every published season. (Min: 2004)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the data table within the database

Value

Returns a cfbfastR_data tibble.

col_name types description
pctile double Percentile bucket the row reports, from 0 to 100.
GEI double Value of game excitement index at the percentile this row reports.
EPAplay double Value of EPA generated per play at the percentile this row reports.
pass_success double Value of success rate on pass plays at the percentile this row reports.
rush_success double Value of success rate on rush plays at the percentile this row reports.
early_down_success double Value of success rate on early downs at the percentile this row reports.
early_down_EPA double Value of EPA per early-down play at the percentile this row reports.
late_down_success double Value of success rate on late downs at the percentile this row reports.
success double Value of success rate across the team plays at the percentile this row reports.
yardsplay double Value of yards per play at the percentile this row reports.
dropbacks double Value of dropbacks taken by the passer at the percentile this row reports.
rushes double Value of rushing attempts at the percentile this row reports.
EPAdropback double Value of EPA generated per dropback at the percentile this row reports.
EPArush double Value of EPA generated per rushing attempt at the percentile this row reports.
yardsdropback double Value of yards per dropback at the percentile this row reports.
pass_explosive double Value of explosive-play rate on pass plays at the percentile this row reports.
rush_explosive double Value of explosive-play rate on rush plays at the percentile this row reports.
explosive double Value of explosive-play rate at the percentile this row reports.
third_down_success double Value of success rate on third down at the percentile this row reports.
red_zone_success double Value of success rate in the red zone at the percentile this row reports.
play_stuffed double Value of stuffed-play rate at the percentile this row reports.
nonExplosiveEpaPerPlay double Value of EPA per play excluding explosive plays at the percentile this row reports.
havoc double Value of havoc rate at the percentile this row reports.
yardsrush double Value of yards per rush at the percentile this row reports.
lineyards double Value of line yards per rush at the percentile this row reports.
opportunity_run double Value of opportunity-run rate at the percentile this row reports.
third_down_distance double Value of average yards to go on third down at the percentile this row reports.

Author(s)

Saiem Gilani

Examples


  try(load_espn_cfb_percentiles(2004))


cfbfastR documentation built on Aug. 24, 2026, 5:13 p.m.