Learn R Programming

proceduralnames

Would a rose by any procedurally generated name still smell as sweet?

The goal of proceduralnames is to make it easy to quickly generate unique-enough identifier strings for easy differentiation of objects or observations.

Installation

If the CRAN badge above is green, you can install the released version of proceduralnames from CRAN with:

install.packages("proceduralnames")

You can always install the development version of proceduralnames from GitHub via:

remotes::install.github("mikemahoney218/proceduralnames")

Usage

At the moment, proceduralnames provides three user-facing functions: make_docker_names, make_english_names, and make_spanish_names. make_docker_names makes names in the same way Docker generates names for its containers:

library(proceduralnames)
make_docker_names(1)
#> [1] "optimistic_shirley"

make_english_names and make_spanish_names both generate names using a subset of the 1,000 most common words in English or Spanish, respectively:

make_english_names(1)
#> [1] "night_solve_noise"
make_spanish_names(1)
#> [1] "grandes_silencio_programa"

All three functions can be used to generate multiple names by providing a different number to the n argument. make_english_names and make_spanish_names both have an argument, n_words, which can be used to alter the number of words combined for each name. All three functions also have an argument, retry (named after the argument used in generating Docker container names) which will append a random integer between 1 and 10 to the end of each name:

make_docker_names(1, retry = TRUE)
#> [1] "confident_mclean9"

In addition to these functions, proceduralnames provides the data sets each function draws from (namely, docker_adjectives, docker_names, common_words, and spanish_words). These data may evolve with each release of the package, so try not to depend on the length and contents of each vector remaining constant, but the fundamental shape of each object will remain stable.

Note that the emphasis of this package is on generating human-readable identifiers, not necessarily universally unique strings. If you need strings which are functionally universally unique for your application, look into the uuid package.

Copy Link

Version

Install

install.packages('proceduralnames')

Monthly Downloads

781

Version

0.2.2

License

Apache License (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Michael Mahoney

Last Published

August 11th, 2022

Functions in proceduralnames (0.2.2)

make_spanish_names

Generates a random name from a list of common Spanish words.
make_english_names

Generates a random name from a list of common English words.
spanish_words

820 of the most common words in the Spanish language
make_docker_names

Generates a random name from the list of Docker adjectives and surnames.
make_names

Create procedural names.
docker_names

Surnames used in the procedural naming of Docker containers.
proceduralnames-package

proceduralnames: Several Methods for Procedural Name Generation
common_words

999 of the most common words in the English language
docker_adjectives

Adjectives used in the procedural naming of Docker containers.