-
Notifications
You must be signed in to change notification settings - Fork 7
/
DESCRIPTION
31 lines (31 loc) · 884 Bytes
/
DESCRIPTION
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
Package: nbaTools
Title: Scrape and Manipulate NBA Data
Version: 0.1
Authors@R: person("Chirag", "Agrawal", email = "ccagrawal@gmail.com", role = c("aut", "cre"))
Description: A combination of scrapers which gather NBA data from several sources
and tools to manipulate and work with the data. The primary data sources are
stats.NBA.com and Basketball-Reference. Visit the package on GitHub for
more information, documentation, and examples.
URL: https://github.com/ccagrawal/nbaTools
BugReports: https://github.com/ccagrawal/nbaTools/issues
Depends: R (>= 3.3.2)
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports:
grid,
httr,
png,
utils,
XML,
RoxygenNote: 6.0.1.9000
Collate:
'helper.R'
'constants.R'
'game.R'
'game_scrape.R'
'league_scrape.R'
'player_scrape.R'
'scoreboard_scrape.R'
'scrape.R'
'team_scrape.R'