forked from abresler/nbastatR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.Rmd
40 lines (29 loc) · 767 Bytes
/
readme.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: "nbastatR"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Installation
```{r eval=F}
devtools::install_github("abresler/nbastatR")
```
# nbastatR <img src="https://asbcllc.com/logos/nbastatR.png" align="right" />
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 eval = F}
library(nbastatR)
library(future)
plan(multiprocess)
game_logs(seasons = 2010:2019)
```