# nbastatR **Repository Path**: flying-yb/nbastatR ## Basic Information - **Project Name**: nbastatR - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-10 - **Last Updated**: 2025-08-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README nbastatR ================ ## Installation ``` r devtools::install_github("abresler/nbastatR") ``` # nbastatR A package to help you master the NBA data universe in R. ## Wrappers - NBA Stats API - Basketball-Reference - HoopsHype - nbadraft.net - realgm - Basketball Insiders ## Parallel Computing This package now supports parallel computing for all iterative functions. In order to utilize this just run \``future::plan` with your selected method. For example to use muiltiprocess. ``` r library(nbastatR) library(future) plan(multiprocess) game_logs(seasons = 2010:2019) ```