Get live game scoreboard information from games.
Arguments
- division
(String optional): Division abbreviation - Select a valid division: fbs/fcs/ii/iii
- 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
Value
cfbd_live_scoreboard()
- A data frame with 41 variables:
col_name | types |
game_id | integer |
start_date | character |
start_time_tbd | logical |
tv | character |
neutral_site | logical |
conference_game | logical |
status | character |
period | integer |
clock | character |
situation | character |
possession | character |
last_play | character |
venue_name | character |
venue_city | character |
venue_state | character |
home_team_id | integer |
home_team_name | character |
home_team_conference | character |
home_team_classification | character |
home_team_points | integer |
home_team_line_scores_Q1 | integer |
home_team_line_scores_Q2 | integer |
home_team_line_scores_Q3 | integer |
home_team_line_scores_Q4 | integer |
away_team_id | integer |
away_team_name | character |
away_team_conference | character |
away_team_classification | character |
away_team_points | integer |
away_team_line_scores_Q1 | integer |
away_team_line_scores_Q2 | integer |
away_team_line_scores_Q3 | integer |
away_team_line_scores_Q4 | integer |
weather_temperature | numeric |
weather_description | character |
weather_wind_speed | numeric |
weather_wind_direction | integer |
betting_spread | numeric |
betting_over_under | numeric |
betting_home_moneyline | integer |
betting_away_moneyline | integer |
See also
Other CFBD Games:
cfbd_calendar()
,
cfbd_game_box_advanced()
,
cfbd_game_info()
,
cfbd_game_media()
,
cfbd_game_player_stats()
,
cfbd_game_records()
,
cfbd_game_team_stats()
,
cfbd_game_weather()
Examples
# \donttest{
try(cfbd_live_scoreboard(division='fbs', conference = "B12"))
#> ── Live Scoreboard information from CollegeFootballData.com ── cfbfastR 2.0.0 ──
#> ℹ Data updated: 2025-08-25 19:40:34 UTC
#> # A tibble: 19 × 41
#> game_id start_date start_time_tbd tv neutral_site conference_game status
#> <int> <chr> <lgl> <chr> <lgl> <lgl> <chr>
#> 1 401752667 2025-08-3… FALSE FOX FALSE FALSE sched…
#> 2 401752796 2025-08-2… FALSE ESPN TRUE FALSE sched…
#> 3 401752800 2025-08-3… FALSE FOX FALSE FALSE sched…
#> 4 401754375 2025-08-3… FALSE ESPN FALSE FALSE sched…
#> 5 401754523 2025-09-0… FALSE ESPN FALSE FALSE sched…
#> 6 401754523 2025-09-0… FALSE ESPNU FALSE FALSE sched…
#> 7 401756846 2025-08-2… FALSE ESPN TRUE TRUE compl…
#> 8 401756847 2025-08-2… FALSE FOX FALSE FALSE compl…
#> 9 401756848 2025-08-2… FALSE NA FALSE FALSE sched…
#> 10 401756849 2025-08-3… FALSE TNT FALSE FALSE sched…
#> 11 401756850 2025-08-3… FALSE NA FALSE FALSE sched…
#> 12 401756851 2025-08-3… FALSE NA FALSE FALSE sched…
#> 13 401756852 2025-08-2… FALSE NA FALSE FALSE sched…
#> 14 401756853 2025-08-3… FALSE FOX FALSE FALSE sched…
#> 15 401756854 2025-08-2… FALSE NA FALSE FALSE sched…
#> 16 401756855 2025-08-3… FALSE NA FALSE FALSE sched…
#> 17 401756876 2025-08-2… FALSE NA FALSE FALSE sched…
#> 18 401756877 2025-08-3… FALSE NA FALSE FALSE sched…
#> 19 401756878 2025-08-3… FALSE NA FALSE FALSE sched…
#> # ℹ 34 more variables: period <lgl>, clock <lgl>, situation <chr>,
#> # possession <chr>, last_play <chr>, venue_name <chr>, venue_city <chr>,
#> # venue_state <chr>, home_team_id <int>, home_team_name <chr>,
#> # home_team_conference <chr>, home_team_classification <chr>,
#> # home_team_points <int>, home_team_line_scores_Q1 <int>,
#> # home_team_line_scores_Q2 <int>, home_team_line_scores_Q3 <int>,
#> # home_team_line_scores_Q4 <int>, away_team_id <int>, away_team_name <chr>, …
# }