Coming up next:
Hey, welcome back after long break! I decided to face the horror of reviewing my old code and make some large refresh of the package. List of changes:
How to track NBA data in R
Download data from NBA.com API
If you are NBA, R and data analytics junkie, this is a package for you! Might be not the most useful tool nor the most exciting, but NBAr contains set of wrapper functions for downloading and simple processing of data from http://stats.nba.com API.
Make your NBA analysis faster and more automated by downloading data straight to your machine !
if (!require("devtools"))
install.packages("devtools")
devtools::install_github("PatrickChodowski/NBAr")
Functions below allow you do easily download data about games, players, teams, statistics and advanced measures from NBA.com. You will find boxscores, play-by-play, shotchart, schedule, player Bios, Sport-VU tracking data, playtypes and much much more!
You can read more about that package and my work on my website, Per48.co
library(NBAr)
library(tidyverse)
#devtools::install_github("PatrickChodowski/NBAr")
season <- 2018
gamelist<- c(21800001:21800003)
game_id = 21800001
#########################
### Boxscores:
#########################
traditional <- map(gamelist, ~get_boxscore(.,boxscore_type = 'traditional')) %>% compact() %>% bind_rows()
#########################
### Matchups
#########################
matchup <- get_matchups(game_id)
#########################
### Play by play:
#########################
pbp2 <- map(gamelist, ~get_playbyplay2(.)) %>% compact() %>% bind_rows()
#########################
### Lineups:
#########################
lineups <- get_lineups(season,5,'Base')
bulls_lineups <- get_lineups(season,5,'Base', team_id = 1610612741)
#########################
### On/Off court:
#########################
onoff_bulls <- get_on_off(season,1610612741)
#########################
### Players list
#########################
players <- get_players(season)
player_bio <- get_playerbio(season)
#########################
### Shotcharts
#########################
shots_abrines <- get_shotchart(203518, season)
#########################
### Schedule
#########################
schedule <- get_schedule(season)
#########################
### Tracking data
#########################
tracking = get_tracking(season, 'Team', measure_type = 'Defense')
#########################
### Playtype data
#########################
playtype <- get_playtype(season, 'T', 'Postup')
#########################
### Defense data
#########################
defense <- get_defense(season, 'Team', 'Overall')
#########################
### General data
#########################
general <- get_general(season, type = 'Team', 'Base')
#########################
### Hustle data
#########################
hustle <- get_hustle(21800001)
#########################
### Shooting data
#########################
shooting <- get_shooting(season, 'Team', "By+Zone", "Base")