Get boxscore by game, team, and player-type
Usage
get_game_boxscore(game = 2024020602, team = "home", player_type = "forwards")
Arguments
- game
integer Game ID
- team
string Team of 'home' or 'away'
- player_type
string Player-type of 'forwards', 'defense', or 'goalies'
Value
tibble with one row per player
Examples
boxscore_2024030411_FLA_defensemen <- get_game_boxscore(
game=2024030411,
team='away',
player_type='defense'
)