| roster_statistics | R Documentation |
roster_statistics() scrapes the roster statistics for a given set of
team, season, game_type, and position.
roster_statistics(
team = 1,
season = "now",
game_type = "",
position = "skaters"
)
roster_stats(team = 1, season = "now", game_type = "", position = "skaters")
team |
integer ID (e.g., 21), character full name (e.g., 'Colorado
Avalanche'), OR three-letter code (e.g., 'COL'); see |
season |
integer in YYYYYYYY (e.g., 20242025); see |
game_type |
integer in 1:3 (where 1 = pre-season, 2 = regular season, 3
= playoff/post-season) OR character of 'pre', 'regular', or
playoff'/'post'; see |
position |
character of 's'/'skaters' or 'g'/'goalies' |
data.frame with one row per player
COL_goalies_statistics_regular_20242025 <- roster_statistics(
team = 21,
season = 20242025,
game_type = 2,
position = 'G'
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.