I'm trying to create some wordclouds using ggwordcloud but no matter how I fiddle with the arguments in geom_wordcloud_area()
my wordclouds come out looking horrible with each word having a huge margin of white space around it. Every online tutorial has super slick looking examples (i.e. this, and this, and of course) however mine look like this no matter what I do:
Code for the above wordcloud (I appreciate that the frequency column/scaling of it seem weird but that's not the issue here - this issue happens with any word/freq pairs I input):
ggplot(word_freq %>% filter(freq > 0.01), aes(label = WORD, size = freq^3)) +
geom_text_wordcloud(eccentricity = 1) +
scale_size_area(max_size = 10)+
theme_minimal()
Would be incredibly grateful if anyone knows what's going on - this has taken up a ridiculously huge amount of time.