로딩
요청 처리 중입니다...

20221122 빅데이터&AI(머신러닝,딥러닝)인공지능

 20221122 빅데이터&AI(머신러닝,딥러닝)인공지능

첨부파일 1122_training.R 파일 다운로드 # 토픽모델링 # 06-2 -------------------------------------------------------------------- # 기생충 기사 댓글 불러오기 library(readr) library(dplyr) raw_news_comment <- read_csv("news_comment_parasite.csv") %>% mutate(id = row_number()) # ------------------------------------------------------------------------- library(stringr) library(textclean) # 기본적인 전처리 news_comment <- raw_news_comment %>% mutate(reply = str_replace_all(reply, "[^가-힣]", " "), reply = str_squish(reply)) %>% # 중복 댓글...