setwd("C:/Rdata") getwd() #Ctrl + l => 콘솔창 정리 install.packages("foreign") install.packages("readxl") library(foreign) library(dplyr) library(ggplot2) library(readxl) raw_welfare=read.spss(file = "Koweps_hpc10_2015_beta1.sav", to.data.frame = T)#데이타 프레임 트루 #원본 데이터는 그대로 두고 가공하기 위한 사본을 만듦 welfare=raw_welfare head(welfare) tail(welfare) View(welfare) #()에 해당되는 전체 데이터 보기 str(welfare) summarise(welfar..
install.packages("dygraphs") library(dygraphs) data(package="ggplot2") econ=data.frame(ggplot2::economics) head(econ) library(xts) eco=xts(econ$unemploy,order.by=econ$date) head(eco) dygraph(eco) dygraph(eco) %>% dyRangeSelector() eco_a=xts(econ$psavert,order.by = econ$date) eco_b=xts(econ$unemploy/1000,order.by = econ$date) eco2=cbind(eco_a,eco_b) head(eco2) colnames(eco2)=c("psave","unemploy")..
#패키지 설치 install.packages("multilinguer") library(multilinguer) install_jdk() install.packages(c('stringr', 'hash', 'tau', 'Sejong', 'RSQLite', 'devtools'), type = "binary") install.packages("remotes") remotes::install_github('haven-jeon/KoNLP', upgrade = "never", INSTALL_opts=c("--no-multiarch")) library(KoNLP) #최종적으로 "KoNLP" 패키지를 불러옵니다 install.packages("wordcloud") library(wordcloud) #막대그래프 txt..