powered by
Sorts a dfm by descending frequency of total features, total features in documents, or both.
dfm_sort(x, decreasing = TRUE, margin = c("features", "documents", "both"))
A sorted dfm matrix object
Document-feature matrix created by dfm()
dfm()
logical; if TRUE, the sort will be in descending order, otherwise sort in increasing order
TRUE
which margin to sort on features to sort by frequency of features, documents to sort by total feature counts in documents, and both to sort by both
features
documents
both
Ken Benoit
dfmat <- dfm(tokens(data_corpus_inaugural)) head(dfmat) head(dfm_sort(dfmat)) head(dfm_sort(dfmat, decreasing = FALSE, "both"))
Run the code above in your browser using DataLab