cfbd_team_info: *Team info lookup*

View source: R/cfbd_teams.R

cfbd_team_infoR Documentation

Team info lookup

Description

Team info lookup

Usage

cfbd_team_info(
  conference = NULL,
  only_fbs = TRUE,
  year = most_recent_cfb_season()
)

Arguments

conference

(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 Required if year not provided

only_fbs

(Logical default TRUE): Filter for only returning FBS teams for a given year. If year is left blank while only_fbs is TRUE, then will return values for most current year

year

(Integer optional): Year, 4 digit format (YYYY). Filter for getting a list of major division team for a given year. Required if conference not provided and the year parameter is only supported if only_fbs is TRUE.
Minimum value accepted: 1869

Value

cfbd_team_info() - A data frame with 27 variables:

col_name types description
team_id integer Referencing team id.
school character Team name.
mascot character Team mascot.
abbreviation character Team abbreviations.
alt_name1 character Team alternate name 1 (as it appears in play_text).
alt_name2 character Team alternate name 2 (as it appears in play_text).
alt_name3 character Team alternate name 3 (as it appears in play_text).
conference character Conference of team.
division character Division of team within the conference.
classification character Conference classification (fbs, fcs, ii, iii).
color character Team color (primary).
alt_color character Team color (alternate).
logos character Team logos.
venue_id character Referencing venue id.
venue_name character Stadium name.
city character Team/venue city.
state character Team/venue state.
zip character Team/venue zip code.
country_code character Team/venue country code.
timezone character Team/venue timezone.
latitude numeric Venue latitude.
longitude numeric Venue longitude.
elevation numeric Venue elevation.
capacity integer Venue capacity.
year_constructed integer Year the venue was constructed.
grass logical TRUE/FALSE response on whether the field is grass or not.
dome logical TRUE/FALSE flag for if the venue is a domed stadium.

See Also

Other CFBD Teams: cfbd_team_matchup(), cfbd_team_matchup_records(), cfbd_team_roster(), cfbd_team_talent()

Examples


  try(cfbd_team_info(conference = "SEC"))

  try(cfbd_team_info(conference = "Ind"))

  try(cfbd_team_info(year = 2019))


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