Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robjhyndman/cricketdata
International cricket data for men and women, Tests, ODIs and T20s
https://github.com/robjhyndman/cricketdata
cricket cricket-data ozunconf17 r r-package rstats unconf
Last synced: 7 days ago
JSON representation
International cricket data for men and women, Tests, ODIs and T20s
- Host: GitHub
- URL: https://github.com/robjhyndman/cricketdata
- Owner: robjhyndman
- Created: 2017-10-27T03:23:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-23T01:46:34.000Z (about 1 year ago)
- Last Synced: 2024-10-15T23:31:06.680Z (22 days ago)
- Topics: cricket, cricket-data, ozunconf17, r, r-package, rstats, unconf
- Language: R
- Homepage: http://pkg.robjhyndman.com/cricketdata/
- Size: 26.9 MB
- Stars: 81
- Watchers: 10
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
echo = TRUE,
collapse = TRUE,
comment = "#>",
cache = TRUE,
fig.path = "man/figures/README-"
)
library(cricketdata)
library(tidyverse)
```# cricketdata
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/cricketdata)](https://cran.r-project.org/package=cricketdata)
[![Downloads](https://cranlogs.r-pkg.org/badges/cricketdata)](https://cran.r-project.org/package=cricketdata)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![R-CMD-check](https://github.com/robjhyndman/cricketdata/workflows/R-CMD-check/badge.svg)](https://github.com/robjhyndman/cricketdata/actions)Functions for downloading data on international and other major cricket matches from [ESPNCricinfo](https://www.espncricinfo.com) and [Cricsheet](https://cricsheet.org). This package provides some functions to download the data into tibbles ready for analysis.
Please respect the terms of use for each website: [ESPNCricinfo](https://www.espncricinfo.com/ci/content/site/company/terms_use.html), [Cricsheet](https://cricsheet.org/register/).## Installation
You can install the **stable** version from [CRAN](https://cran.r-project.org/package=cricketdata).
```r
install.packages("cricketdata", dependencies = TRUE)
```You can install the **development** version [Github](https://github.com/robjhyndman/cricketdata):
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("robjhyndman/cricketdata")
```## License
This package is free and open source software, licensed under GPL-3.