Package 'acronames'

Title: Create Acronyms for Naming Things
Description: Simple tool for developing names based on first letters of keywords.
Authors: Christopher T. Kenny [aut, cre]
Maintainer: Christopher T. Kenny <[email protected]>
License: MIT + file LICENSE
Version: 0.0.0.9000
Built: 2024-08-13 03:01:49 UTC
Source: https://github.com/christopherkenny/acronames

Help Index


Create Names using Acronyms

Description

Create Names using Acronyms

Usage

acronames(required = list(), optional = list(), dict = dictionary())

Arguments

required

list of required words. Words that are alternatives for each other should be a character vector entry to the list.

optional

list of optional words. Words that are alternatives for each other should be a character vector entry to the list.

dict

the dictionary of acceptable words. Must contain a column with the name word.

Value

vector of possibilities

Examples

data('dict')
test <- acronames(required = list('Harvard', c('Automated', 'Algorithmic'),
'Redistricting', c('Team', 'Project', 'Group')), optional = list('Methodology'),
dict = dict)

Dictionary of words

Description

A dataset words extracted and separated from words::words.

Usage

dict

Format

A data frame with 175393 rows and 2 variables:

word

words from words::words

chars

a letters list of characters


Create a Dictionary

Description

Create a Dictionary

Usage

dictionary(dict = words::words)

Arguments

dict

tibble with column word

Value

tibble

Examples

dict <- dictionary()

Create Letters List

Description

Create Letters List

Usage

letters_list(word)

Arguments

word

list of words

Value

list

Examples

letters_list('abacus')