You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.0 KiB

7 years ago
---
output: rmarkdown::github_document
---
`bismer` : Generate Shakespearean insults
7 years ago
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>).
7 years ago
7 years ago
The following functions are implemented:
- `insult`: Generate a Shakespearean insult
7 years ago
The `insult()` function is aliased to
- `gehornian`
- `híenan`
- `misgrétan`
- `scendan`
for those who want to go "all-in" on the Shakespeare thing.
7 years ago
### 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()))
7 years ago
purrr::walk(1:10, ~print(insult(thou=FALSE)))
7 years ago
7 years ago
purrr::walk(1:10, ~print(insult(sentence=TRUE)))
7 years ago
7 years ago
purrr::walk(1:10, ~print(insult(sentence=TRUE, exclaim=FALSE)))
7 years ago
```