Skip to content

Commit

Permalink
Merge pull request #7 from saiemgilani/standings
Browse files Browse the repository at this point in the history
loaders wbb/wnba players/teams
  • Loading branch information
saiemgilani authored May 24, 2021
2 parents 1a77883 + 5ae4e05 commit dbe3fe3
Show file tree
Hide file tree
Showing 52 changed files with 2,049 additions and 893 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ data-raw*
inst/doc*
kenpomR.Rcheck*
wnba_pbp_db*
wbb_pbp_db*
wbb_pbp_db*
docs*
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: wehoop
Title: Functions to Access Women's Basketball Play by Play Data
Version: 0.9.2
Version: 1.0.0
Authors@R: c(person('Saiem', 'Gilani', email = 'saiem.gilani@gmail.com',role = c('aut','cre')),
person('Geoff','Hutchinson', email = 'geoffery.hutchinson@gmail.com', role = c('aut')))
Description: The R package wehoop is for working with women's college and professional basketball data. A scraping and aggregating interface for ESPN's women's college basketball and WNBA statistics, [espn.com](https://espn.com). It provides users with the capability to access the API's game play-by-plays, box scores, standings and results to analyze the data for themselves.
Expand All @@ -11,6 +11,7 @@ BugReports: https://www.github.com/saiemgilani/wehoop/issues
Encoding: UTF-8
Depends: R (>= 3.5.0)
Imports:
data.table,
dplyr,
furrr,
future,
Expand Down
7 changes: 7 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,29 @@ export(espn_wbb_pbp)
export(espn_wbb_player_box)
export(espn_wbb_rankings)
export(espn_wbb_scoreboard)
export(espn_wbb_standings)
export(espn_wbb_team_box)
export(espn_wbb_teams)
export(espn_wnba_game_all)
export(espn_wnba_pbp)
export(espn_wnba_player_box)
export(espn_wnba_scoreboard)
export(espn_wnba_standings)
export(espn_wnba_team_box)
export(espn_wnba_teams)
export(load_wbb_pbp)
export(load_wbb_player_box)
export(load_wbb_team_box)
export(load_wnba_pbp)
export(load_wnba_player_box)
export(load_wnba_team_box)
export(ncaa_wbb_NET_rankings)
export(update_wbb_db)
export(update_wnba_db)
import(furrr)
import(rvest)
import(utils)
importFrom(data.table,rbindlist)
importFrom(dplyr,"%>%")
importFrom(dplyr,any_of)
importFrom(dplyr,arrange)
Expand Down
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# **wehoop 1.0.0**
### **Add team box score loaders**
- [```wehoop::load_wbb_team_box()```](https://saiemgilani.github.io/wehoop/reference/load_wbb_team_box.html) function added
- [```wehoop::load_wnba_team_box()```](https://saiemgilani.github.io/wehoop/reference/load_wnba_team_box.html) function added

### **Add player box score loaders**
- [```wehoop::load_wbb_player_box()```](https://saiemgilani.github.io/wehoop/reference/load_wbb_player_box.html) function added
- [```wehoop::load_wnba_player_box()```](https://saiemgilani.github.io/wehoop/reference/load_wnba_player_box.html) function added

### **Standings functions**
- [```wehoop::espn_wnba_standings()```](https://saiemgilani.github.io/wehoop/reference/espn_wnba_standings.html)
- [```wehoop::espn_wbb_standings()```](https://saiemgilani.github.io/wehoop/reference/espn_wbb_standings.html)

### **Getting Started vignette**
- [Getting started with wehoop data](https://saiemgilani.github.io/wehoop/articles/getting-started-wehoop.html)

# **wehoop 0.9.2**
### **Quick fix for update db functions**

Expand Down
Loading

0 comments on commit dbe3fe3

Please sign in to comment.