Skip to content

Commit

Permalink
docs: Updating citations with DOI's
Browse files Browse the repository at this point in the history
  • Loading branch information
saiemgilani committed Jul 21, 2024
1 parent 61eaeb5 commit 3238aae
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 15 deletions.
12 changes: 8 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,13 @@ To cite the [**`wehoop`**](https://wehoop.sportsdataverse.org) R package in publ
BibTex Citation
```bibtex
@misc{hutchinson_gilani_2021_wehoop,
author = {Saiem Gilani and Geoff Hutchinson},
title = {wehoop: The SportsDataverse's R Package for Women's Basketball Data.},
url = {https://wehoop.sportsdataverse.org},
year = {2021}
title = {wehoop: Access Women’s Basketball Play by Play Data},
url = {http://dx.doi.org/10.32614/CRAN.package.wehoop},
DOI = {10.32614/cran.package.wehoop},
journal = {CRAN: Contributed Packages},
publisher = {The R Foundation},
author = {Gilani, Saiem and Hutchinson, Geoffery},
year = {2021},
month = nov
}
```
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pacman::p_load_current_gh("sportsdataverse/wehoop", dependencies = TRUE, update

## **Quick Start**

### **WNBA full play-by-play seasons (2002-2023) ~ 1-2 minutes**
### **WNBA full play-by-play seasons (2002-2024) ~ 1-2 minutes**

``` r
tictoc::tic()
Expand All @@ -58,9 +58,9 @@ progressr::with_progress({
tictoc::toc()
```

## 1.39 sec elapsed
## 1.16 sec elapsed

## 102191 rows of WNBA play-by-play data from 262 games.
## 58334 rows of WNBA play-by-play data from 150 games.

### **Women’s college basketball full play-by-play seasons (2004-2024) ~ 2-3 minutes**

Expand All @@ -72,9 +72,9 @@ progressr::with_progress({
tictoc::toc()
```

## 1.7 sec elapsed
## 6.3 sec elapsed

## 328507 rows of women's college basketball play-by-play data from 959 games.
## 1908679 rows of women's college basketball play-by-play data from 5779 games.

## **Documentation**

Expand Down Expand Up @@ -115,9 +115,13 @@ BibTex Citation

``` bibtex
@misc{hutchinson_gilani_2021_wehoop,
author = {Saiem Gilani and Geoff Hutchinson},
title = {wehoop: The SportsDataverse's R Package for Women's Basketball Data.},
url = {https://wehoop.sportsdataverse.org},
year = {2021}
title = {wehoop: Access Women’s Basketball Play by Play Data},
url = {http://dx.doi.org/10.32614/CRAN.package.wehoop},
DOI = {10.32614/cran.package.wehoop},
journal = {CRAN: Contributed Packages},
publisher = {The R Foundation},
author = {Gilani, Saiem and Hutchinson, Geoffery},
year = {2021},
month = nov
}
```
7 changes: 5 additions & 2 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ citEntry(entry = "Misc",
as.person("Saiem Gilani"),
as.person("Geoff Hutchinson")),
title = "wehoop: The SportsDataverse's R Package for Women's Basketball Data.",
url = c("saiemgilani.github.io/wehoop/"),
url = c("http://dx.doi.org/10.32614/CRAN.package.wehoop"),
DOI = c("10.32614/cran.package.wehoop"),
journal = "CRAN: Contributed Packages",
publisher = "The R Foundation",
year = year,
note = note,
textVersion = paste(
"Saiem Gilani and Geoff Hutchinson. wehoop: The SportsDataverse's R Package for Women's Basketball Data.",
"Retrieved from https://saiemgilani.github.io/wehoop/"
"Retrieved from http://dx.doi.org/10.32614/CRAN.package.wehoop"
)
)

0 comments on commit 3238aae

Please sign in to comment.