forked from hrbrmstr/bismer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
46 lines (29 loc) · 923 Bytes
/
README.Rmd
File metadata and controls
46 lines (29 loc) · 923 Bytes
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
42
43
44
45
---
output: rmarkdown::github_document
---
`bismer` : Generate Shakespearean insults
Inspired by Dr. Vicky Forster (<a href="https://twitter.com/vickyyyf">@vickyyyf</a>) : <https://twitter.com/vickyyyf/status/846028898152431618> and requested by Jeff Hollister (<a href="https://twitter.com/jhollist">@jhollist</a>).
The following functions are implemented:
- `insult`: Generate a Shakespearean insult
### Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/bismer")
```
```{r message=FALSE, warning=FALSE, error=FALSE, include=FALSE}
options(width=120)
```
### Usage
```{r message=FALSE, warning=FALSE, error=FALSE}
library(bismer)
# current verison
packageVersion("bismer")
purrr::walk(1:10, ~print(insult()))
purrr::walk(1:10, ~print(insult(thou=FALSE)))
```
### Test Results
```{r message=FALSE, warning=FALSE, error=FALSE}
library(bismer)
library(testthat)
date()
test_dir("tests/")
```