Description Usage Arguments Value Author(s) Examples
View source: R/get_all_lineups.R
Wrapper for processing NBA.com player lineups data
| 1 2 3 4 5 6 | get_all_lineups(
  season,
  group_quantities = c(2:5),
  measure_types = c("Base", "Advanced", "Misc", "Scoring", "Opponent"),
  ...
)
 | 
| season | Number of the year in which season started | 
| group_quantities | Specify number of players in a lineup c(2:5) | 
| measure_types | Specify which statistics group you want to download. c('Base','Advanced','Misc','Scoring','Opponent') | 
| ... | Additional arguments for get_lineups | 
Dataset from stats.nba.com
Patrick Chodowski, Chodowski.Patrick@gmail.com
| 1 2 3 4 | season <- 2019
group_quantities <- c(2:3)
measure_types <- c('Base','Advanced')
df <- get_all_lineups(season, group_quantities, measure_types)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.