Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amrrs/haikunator
Generate Heroku-like Random Names in R
https://github.com/amrrs/haikunator
heroku r r-package
Last synced: about 1 month ago
JSON representation
Generate Heroku-like Random Names in R
- Host: GitHub
- URL: https://github.com/amrrs/haikunator
- Owner: amrrs
- License: other
- Created: 2018-01-22T19:20:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-30T12:11:58.000Z (almost 7 years ago)
- Last Synced: 2024-11-15T04:51:58.486Z (3 months ago)
- Topics: heroku, r, r-package
- Language: R
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# haikunator
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/haikunator)](https://cran.r-project.org/package=haikunator) [![Travis-CI Build Status](https://travis-ci.org/amrrs/haikunator.svg?branch=master)](https://travis-ci.org/amrrs/haikunator)
Generate Heroku-like Memorable Random Names in R. Inspired by [haikunate](https://github.com/usmanbashir/haikunator).
## Installation
You can install `haikunator` from github with:
``` r
# install.packages("devtools")
devtools::install_github("amrrs/haikunator")
```## Getting Started
`haikunator` can be loaded into R session like any other R package.
``` r
library(haikunator)
```## Examples
**Simple haikunate without any arguments.**
``` r
haikunate(3)#output
> haikunate(3)
[1] "super-sweet-356"
```
**haikunate with custom delimiter and different token length**``` r
haikunate(5,'.')#output
> haikunate(5,'.')
[1] "dry.empty.93974"
```