powered by
This method creates a bar plot from a MetaNLP object, displaying the most frequent word stems.
# S4 method for MetaNLP,missing plot( x, y = NULL, n = 10, decision = c("total", "include", "exclude"), stop_words = FALSE, ... )
nothing
A MetaNLP object to plot
not used
Number of bars
Stratify bar plot by decision. Default is no stratification.
Boolean to decide whether stop words shall be included in the summary. stop_words = TRUE means, that stop words are included.
stop_words = TRUE
Additional parameters for delete_stop_words (e.g. language of the stop words).
delete_stop_words
path <- system.file("extdata", "test_data.csv", package = "MetaNLP", mustWork = TRUE) obj <- MetaNLP(path) plt <- plot(obj)
Run the code above in your browser using DataLab