Word cloud plot

my_wordcloud(
  str_vector,
  ignore_words = "Unclassified|uncultured|Ambiguous|Unknown|unknown|metagenome|Unassig",
  topN = 50
)

Arguments

str_vector

string vector

ignore_words

ignore_words

topN

topN, 50

Value

a htmlwidget

Examples

# \donttest{
data(otutab, package = "pcutils")
if (requireNamespace("wordcloud2")) {
  my_wordcloud(taxonomy$Genus)
}
#> Loading required namespace: wordcloud2
# }