[R] ggwordcloud example
참고자료 LIBRARY LOAD tm 불용어 처리 ggwordcloud tutorial WordCloud Library Load Packages % head() ## # A tibble: 6 x 2 ## noun n ## ## 1 너 65 ## 2 나 37 ## 3 말 26 ## 4 사랑 25 ## 5 것 23 ## 6 오늘 19 3차 Data Handling 아직 처리되지 않은 불용어 추가 처리 ## 2차 stopwords notuse = text$noun %in% c("너","내","나","것" , "수","한","날" , "랄라라라랄라라라") text = text[!notuse,] text %>% head() ## # A tibble: 6 x 2 ## noun n ## ## 1 말 26 ## 2 사..
2019.09.29