Obtains football game team box scores from the NCAA API.

ncaa_fb_team_stats(game_id)

Arguments

game_id

the game_id of a given NCAA FB game from the NCAA API

Value

a data frame with NCAA FB game team stats

Examples

# \donttest{
  ncaa_fb_team_stats(5931773)
#> New names:
#> * stat -> stat...2
#> * data -> data...3
#> * stat -> stat...4
#> * data -> data...5
#> # A tibble: 2 × 33
#>   team_id first_downs rushing passing total_offense fumbles fumbles_lost
#>   <chr>   <chr>       <chr>   <chr>   <chr>         <chr>   <chr>       
#> 1 1490    30          109     340     449           0       0           
#> 2 1175    25          115     421     536           1       0           
#> # … with 26 more variables: penalties <chr>, penalty_yards <chr>, punts <chr>,
#> #   punting_yards <chr>, punt_returns <chr>, punt_return_yards <chr>,
#> #   kick_returns <chr>, kick_return_yards <chr>, interceptions <chr>,
#> #   interception_yards <chr>, third_down_conversions <chr>,
#> #   third_down_attempts <chr>, fourth_down_conversions <chr>,
#> #   fourth_down_attempts <chr>, first_downs_rushing <chr>,
#> #   first_downs_passing <chr>, first_downs_penalty <chr>, …
# }