plot_cloud.Rd
Creates a wordcloud of most occurring words in a string or list of strings
plot_cloud(
song,
max_font_size = 1,
max_words = 100,
background_color = "black"
)
A data frame including song_title and artist in each column
maximum font size - numeric
maximum number of words to be included in wordcloud
background color
A wordcloud image
if (FALSE) {
song <- data.frame(song_title = c("22", "Bohemian Rhapsody"), artist = c("Taylor Swift", "Queen"))
plot_cloud(song, max_font_size=1.6, max_words=100, background_color="white")
}