Skip to contents

get_dictionary() is deprecated in favor of load_dictionary. This function now simply calls load_dictionary() with a deprecation warning.

Usage

get_dictionary(name, ...)

Arguments

name

Dictionary name (e.g., "global_surnames", "english_freqs").

...

Additional arguments passed to load_dictionary, such as format, auto_download, path, quiet, cache, force_rebuild, unify, or large.

Value

A data frame containing the dictionary data.

See also

load_dictionary for the recommended function, download_dictionary to pre-fetch on-demand dictionaries, list_dictionaries for available dictionaries.

Examples

if (FALSE) { # \dontrun{
# Deprecated: use load_dictionary() instead
data <- get_dictionary("sensorimotor")
} # }