-
Notifications
You must be signed in to change notification settings - Fork 0
/
news_app.Rmd
383 lines (332 loc) · 11 KB
/
news_app.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
---
title: "네이버 뉴스 검색 애플리케이션"
description: |
간단한 애플리케이션을 만들어 봅니다. **koscrap** 패키지를 이용해서 **네이버 뉴스 검색 애플리케이션**을 만듭니다.
author:
- name: 유충현
url: https://choonghyunryu.github.io
affiliation: 한국R사용자회
citation_url: https://choonghyunryu.github.io/tidyverse-meets-shiny/news_app
date: 2022-07-09
output:
distill::distill_article:
self_contained: false
toc: true
toc_depth: 3
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE,
message = FALSE,
warning = FALSE,
collapse = FALSE,
fig.align = "center")
library(shiny)
library(htmltools)
```
```{r news-app, echo=FALSE, out.width = "65%"}
knitr::include_graphics("img/viz_cloud.jpg")
```
```{r, preface, echo=FALSE}
div(class = "preface",
h3("들어가기"),
"공격이 최선의 방어라는 격투기 격언이 있습니다. Shiny의 경우는", strong("실제로 애플리케이션을 개발해 보는 것이 최선의 학습"), "입니다.", br(),
"간단하지만, 유용한 애플리케이션을 만들어 볼까요? 걱정할 필요 없습니다. 천천히 따라오세요",
style = "margin-bottom: 40px;")
```
# 애플리케이션 설계
## 기능 설계
네이버 뉴스 검색 애플리케이션의 기능은 다음과 같이 정의합니다.
* 입력 기능
- 사용자 인증을 위한 Client ID, Client Secret 입력
- 검색하려는 뉴스 키워드 입력
- 정렬 옵션 선택
- 날짜순 정렬
- 유사도순 정렬
- 검색건수 입력
* 출력 기능
- 검색 뉴스 테이블 출력
- 타이틀
- 뉴스내용 요약
- 뉴스 게시시간
- 뉴스 링크
- 하이퍼링크를 걸어서, 클릭하면 해당 브라우저 창을 열어 뉴스화면 이동
* 시각화 출력 기능
- 입력기능
- 상위 최대 돗수 제외 건
- 포함할 워드의 최소 돗수
- 플롯의 배경색
- 검색 뉴스들 전체의 워드클라우드 출력
## 사용자 인터페이스 설계
* 페이지
- navbarPage
* 레이아웃
- sidebarLayout
* 패널
- sidebarPanel
- 입력 위젯 위치
- mainPanel
- 출력 위젯 위치
* 입력 위젯
- textInput
- Client ID, Client Secret, 검색 키워드
- radioButtons
- 정렬 옵션 선택
- sliderInput
- 검색건수
- actionButton
- 뉴스 검색 버튼
* 출력 위젯
- reactable
- 검색 결과 출력
* 시각화 입력 위젯
- numericInput
- 상위 최대 돗수 제외 건 선택
- numericInput
- 포함할 워드의 최소 돗수 선택
- colourInput
- 배경색상 선택
* 시각화 출력 위젯
- wordcloud2Output
- 검색 결과 출력
# 애플리케이션 코드
## UI Side
* ui.R
```{r, eval=FALSE}
navbarPage(
"네이버 뉴스 검색 애플리케이션",
tabPanel(
"뉴스 검색하기",
sidebarLayout(
sidebarPanel(
textInput("client_id",
label = h4("Client ID:"),
value = client_id),
textInput("client_secret",
label = h4("Client Secret:"),
value = client_secret),
textInput("keyword",
label = h4("검색 키워드:"),
value = ""),
radioButtons("sort", label = h4("정렬 옵션:"),
choices = list("날짜순" = "date", "유사도순" = "sim"),
selected = "date"),
sliderInput("max_record", label = h4("검색 건수:"), min = 0,
max = 500, value = 100, step = 100),
actionButton("search_keyword", label = "뉴스 검색",
icon = icon("newspaper")),
width = 3
),
# Reactable에 검색 결과 리스트업
mainPanel(
reactableOutput("news_list"),
width = 9
)
)
),
tabPanel(
"워드 클라우드",
sidebarLayout(
sidebarPanel(
numericInput("remove_n",
label = h4("상위 최대 돗수 제외 건:"),
value = 5, min = 0
),
numericInput("min_freq",
label = h4("포함할 워드의 최소 돗수:"),
value = 5, min = 1
),
colourInput("col_bg",
label = h4("배경 색상:"),
value = "white"),
width = 3
),
# 검색 결과 전체의 워드클라우드
mainPanel(
wordcloud2Output("cloud", height = "600px"),
width = 9
)
)
)
)
```
## Server Side
* server.R
```{r, eval=FALSE}
function(input, output, session) {
newsList <- reactiveValues(
list = data.frame(
title = character(0),
description = character(0),
publish_date = character(0),
link = character(0),
stringsAsFactors = FALSE
) %>%
reactable(
defaultColDef = colDef(
align = "left"
),
columns = list(
title = colDef(
name = "타이틀",
width = 250,
),
description = colDef(name = "뉴스내용 요약"),
publish_date = colDef(
name = "뉴스 계시시간",
width = 150,
),
link = colDef(
name = "뉴스 링크",
width = 250,
html = TRUE,
cell = function(url) {
htmltools::tags$a(href = as.character(url), target = "_blank", as.character(url))
}
)
),
showPageSizeOptions = TRUE,
pageSizeOptions = c(5, 10, 15),
defaultPageSize = 5,
bordered = TRUE,
highlight = TRUE
)
)
output$news_list <- renderReactable({
newsList$list <-scraped_news() %>%
mutate(title = title_text) %>%
mutate(description = description_text) %>%
mutate(publish_date = stringr::str_remove_all(publish_date,
"[[:alpha:]]")) %>%
select(title, description, publish_date, link) %>%
reactable(
defaultColDef = colDef(
align = "left"
),
columns = list(
title = colDef(
name = "타이틀",
width = 250,
),
description = colDef(name = "뉴스내용 요약"),
publish_date = colDef(
name = "뉴스 계시시간",
width = 150,
),
link = colDef(
name = "뉴스 링크",
width = 250,
html = TRUE,
cell = function(url) {
htmltools::tags$a(href = as.character(url), target = "_blank", as.character(url))
}
)
),
showPageSizeOptions = TRUE,
pageSizeOptions = c(5, 10, 15),
defaultPageSize = 5,
bordered = TRUE,
highlight = TRUE
)
})
scraped_news <- eventReactive(input$search_keyword, {
# 3개의 텍스트는 반드시 입력해야 함
req(input$keyword)
req(input$client_id)
req(input$client_secret)
write_api_key(input$client_id, input$client_secret)
koscrap::search_naver(
query = input$keyword,
sort = input$sort,
chunk = min(input$max_record, 100),
max_record = input$max_record,
do_done = TRUE,
client_id = input$client_id,
client_secret = input$client_secret)
})
output$cloud <- renderWordcloud2({
data <- scraped_news()
create_wordcloud(
data,
remove_n = input$remove_n,
min_freq = input$min_freq,
background = input$col_bg
)
})
}
```
## Global Environments
* global.R
```{r, eval=FALSE}
# attach packages
library("shiny")
library("dplyr")
library("koscrap")
library("reactable")
library("htmltools")
library("tidytext")
library("wordcloud2")
library("colourpicker")
# Initialize global environments
write_api_key <- function(client_id = NULL, client_secret = NULL) {
if (is.null(client_id)) {
return()
} else {
client_info <- glue::glue("{client_id}:{client_secret}") %>%
charToRaw() %>%
base64enc::base64encode()
write(client_info, file = ".api_key.info")
}
}
get_api_key <- function(client_info) {
client_info <- rawToChar(base64enc::base64decode(client_info)) %>%
strsplit(":") %>%
unlist()
client_id <- client_info[1]
client_secret <- client_info[2]
list(client_id = client_id, client_secret = client_secret)
}
options(api.key.file = TRUE)
client_id <- ""
client_secret <- ""
if (getOption("api.key.file")) {
if (grepl("scrap_app", getwd()) && file.exists(".api_key.info")) {
client_info <- scan(file = ".api_key.info", what = "character")
client_info <- get_api_key(client_info)
client_id <- client_info$client_id
client_secret <- client_info$client_secret
} else {
options(api.key.file = FALSE)
}
}
# create UDF
create_wordcloud <- function(data, remove_n = 5, min_freq = 5, background = "white") {
data %>%
filter(nchar(description_text) > 0) %>%
unnest_tokens(noun, description_text, bitTA::morpho_mecab, type = "noun") %>%
group_by(noun) %>%
count() %>%
arrange(desc(n)) %>%
ungroup() %>%
filter(n >= min_freq) %>%
filter(row_number() > remove_n) %>%
wordcloud2::wordcloud2(backgroundColor = background,
fontFamily = "NamumSquare")
}
```
## 사용 패키지 및 애플리케이션 호출
```{r, eval=FALSE}
# Run the application
shinyApp()
```
# 애플리케이션 실행
## 애플리케이션 실행 화면
애플리케이션을 실행하면 다음과 같의 화면을 얻을 수 있습니다.
![네이버 뉴스 검색 애플리케이션](img/news_app.png)
## 뉴스링크 원문 조회하기
네번째 컬럼인 뉴스링크는 뉴스 원문의 URL 정보입니다. 이 URL을 클릭하면, 뉴스의 원문을 읽을 수 있습니다.
다음은 특정 페이지의 뉴스를 링크를 클릭하여 열린 웹 페이지입니다. 네이버 뉴스 검색 애플리케이션에서 **불평등**이라는 키워드로 검색하였기 때문에, **불평등**이란 단어를 검색하였더니 1개 단어가 매칭되었습니다.
![네이버 뉴스 링크의 뉴스 원문](img/news_link.png)
## 뉴스 요약 정보의 시각화
수집한 전체 뉴스 데이터 중에서 뉴스 요약을 집계합니다. 워드 클라우드를 그려 어떤 단어들이 발화되는지 살펴봅니다.
다음은 워드클라우드 탭을 클릭하여 열린 웹 페이지입니다. **불평등**이라는 키워드로 검색된 기사들에서 어떤 단어들이 발화되는지 살펴봅니다.
![네이버 뉴스 요약정보의 워드클라우드](img/viz_cloud.jpg)