Add frequency of words or other features
Examples
if (FALSE) { # \dontrun{
my_corpus <- load_texts()
my_bigrams <- my_corpus |>
add_frequency()
} # }
if (FALSE) { # \dontrun{
dubliners <- get_gutenberg_corpus(2814) |>
load_texts() |>
identify_by(part) |>
standardize_titles()
dubliners |>
add_frequency() |>
head()
} # }
