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-11-11 03:13:30 UTC |
Source: | https://github.com/christopherkenny/acronames |
Create Names using Acronyms
acronames(required = list(), optional = list(), dict = dictionary())
acronames(required = list(), optional = list(), dict = dictionary())
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. |
vector of possibilities
data('dict') test <- acronames(required = list('Harvard', c('Automated', 'Algorithmic'), 'Redistricting', c('Team', 'Project', 'Group')), optional = list('Methodology'), dict = dict)
data('dict') test <- acronames(required = list('Harvard', c('Automated', 'Algorithmic'), 'Redistricting', c('Team', 'Project', 'Group')), optional = list('Methodology'), dict = dict)
A dataset words extracted and separated from words::words
.
dict
dict
A data frame with 175393 rows and 2 variables:
words from words::words
a letters list of characters
Create a Dictionary
dictionary(dict = words::words)
dictionary(dict = words::words)
dict |
tibble with column |
tibble
dict <- dictionary()
dict <- dictionary()
Create Letters List
letters_list(word)
letters_list(word)
word |
list of words |
list
letters_list('abacus')
letters_list('abacus')