extract_terms | R Documentation |
This function extracts and counts the most common terms in a corpus.
extract_terms(
article_data,
text_column = "abstract",
n = 100,
remove_stopwords = TRUE,
min_word_length = 3
)
article_data |
A data frame containing article data. |
text_column |
Name of the column containing the text to analyze. |
n |
Number of top terms to return. |
remove_stopwords |
Logical. If TRUE, removes stopwords. |
min_word_length |
Minimum word length to include. |
A data frame containing term counts.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.