Lists all available dictionaries, indicating which are installed and their properties.
Usage
list_dictionaries(installed_only = FALSE, include_core = TRUE)
Arguments
- installed_only
If TRUE, only show dictionaries that are installed locally.
Default FALSE.
- include_core
If TRUE, include core dictionaries. Default TRUE.
Value
A data frame with columns:
name: Dictionary name
status: "core", "downloaded", or "ondemand"
size_mb: File size in MB (if installed)
n_rows: Number of rows (if installed)
n_cols: Number of columns (if installed)
Examples
if (FALSE) { # \dontrun{
# List all dictionaries
list_dictionaries()
# List only installed dictionaries
list_dictionaries(installed_only = TRUE)
# Show only on-demand dictionaries
ondemand <- list_dictionaries()
ondemand[ondemand$status == "ondemand", ]
} # }