plot_wordcloud.Rd
Plots a word cloud for columns in the metadata that don't have a controlled vocabulary. I guess maybe I should start using a controlled vocabulary.
plot_wordcloud(
sheet,
col_use = title,
species_use = "all",
year_min = NA,
year_max = NA,
other_stop_words = NULL,
seed = 1,
scale = c(6, 0.1),
min.freq = 1,
...
)
The sheet read in from Google Sheets as a tibble.
Which column to break down into words for word cloud. Tidyeval is supported.
Which species to filter by.
Minimum year. The range of years will be >= year_min and < year_max.
Maximum year.
A character vector for other stop words besides the stop_words data frame that comes with tidytext.
Random seed to use.
A vector of length 2 indicating the range of the size of the words.
words with frequency below min.freq will not be plotted
Other arguments passed to wordcloud::wordcloud
.
A html widget.