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
)A data frame containing term counts.
A data frame containing article data.
Name of the column containing the text to analyze.
Number of top terms to return.
Logical. If TRUE, removes stopwords.
Minimum word length to include.