-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.Rmd
41 lines (30 loc) · 1.09 KB
/
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
41
```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE,
fig.width = 8,
fig.height = 8)
```
# rcorpora
[![Linux Build Status](https://travis-ci.org/gaborcsardi/rcorpora.svg?branch=master)](https://travis-ci.org/gaborcsardi/rcorpora)
[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/gaborcsardi/rcorpora?svg=true)](https://ci.appveyor.com/project/gaborcsardi/rcorpora)
[![CRAN version](http://www.r-pkg.org/badges/version/rcorpora)](http://www.r-pkg.org/pkg/rcorpora)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/rcorpora)](http://cran.r-project.org/web/packages/rcorpora/index.html)
R package that contains all data sets from
https://github.com/dariusk/corpora
## Installation
```{r eval = FALSE}
install.packages("rcorpora")
```
## Usage
Calling the `corpora()` function without arguments lists all
data sets in the package, calling it with the name of a data
set, returns the data set itself. For example
```{r}
library(rcorpora)
corpora()
corpora("foods/pizzaToppings")
```
## License