Get pre-game win probability data from API
Value
cfbd_metrics_wp_pregame()
- A data frame with 9 variables:
season
: integer.Season of game.
season_type
: character.Season type of game.
week
: integer.Game week of the season.
game_id
: integer.Referencing game id.
home_team
: character.Home team name.
away_team
: character.Away team name.
spread
: integer.Betting line provider spread.
home_win_prob
: double.Home win probability - pre-game prediction.
away_win_prob
: double.Away win probability - pre-game prediction.
Examples
# \donttest{
try(cfbd_metrics_wp_pregame(year = 2019, week = 9, team = "Texas A&M"))
#> ── pre-game WP data from CollegeFootballData.com ───────────── cfbfastR 1.9.5 ──
#> ℹ Data updated: 2024-09-10 01:23:36 UTC
#> # A tibble: 1 × 9
#> season season_type week game_id home_team away_team spread home_win_prob
#> <int> <chr> <int> <int> <chr> <chr> <int> <dbl>
#> 1 2019 regular 9 401110835 Texas A&M Mississippi… -11 0.776
#> # ℹ 1 more variable: away_win_prob <dbl>
# }