독립기념관 독립운동정보 원문자료의 자료번호, 자료내용 등의 정보입니다.
예시 코드
library(tidytext)
library(ggwordcloud)
library(stringr)
library(ggthemes)
imdependenceMov$내용 <- imdependenceMov$내용 %>%
str_replace_all('[^가-힣]', ' ') %>%
str_squish()
# mask_png <- png::readPNG("korean-flag-1424985_1280.png")
imdependenceMov %>%
unnest_tokens(input = 내용, output = word, token = "words") %>%
count(word, sort = TRUE) %>%
filter(str_count(word) > 1) %>%
head(100) %>%
arrange(-n) %>%
ggplot(aes(label = word,
size = n,
col = as.character(n))) +
geom_text_wordcloud(seed = 1234,
max_steps = 1,
grid_size = 1,
eccentricity = .9,
family = "NanumGothic") +
scale_size_area(max_size=12) +
theme_minimal()