1 min to read
R-Studio Pakage
R-Studio의 Dplyr를 이용한 데이터 필터 Part.3
R-Studio 무조건 꼭 해주기.
install.packages(“rJava”)
library(rJava)
JAVA 환경설정및 JRE관련 설정
Use | Descriptions |
---|---|
install.packages("plotrix") |
library(plotrix) 차트 그리기 |
install.packages("devtools") install.packages(htmltools) install.packages(yaml) install.packages(base64enc) install.packages(htmlwidgets) |
library(htmltools) library(yaml) library(base64enc) library(htmlwidgets) devtools::install_github(“lchiffon/wordcloud2”) library(wordcloud2) 워드 클라우드 |
install.packages("dplyr") |
library(dplyr) 파이프 라인 함수 |
install.packages("stringr") |
library(stringr) 정규식, 문자열 관련 함수 |
install.packages("reshape2") |
library(reshape2) dcast, melt 관련 |
install.packages("jsonlite") |
library(jsonlite) json 관련함수 |
install.packages("KoNLP") |
library(KoNLP) 한글 단어 추출 |
install.packages("xml2") |
library(xml2) XML파일관련 함수 |
install.packages('xlsx') |
library(xlsx) 엑셀 파일 관련 함수 |
install.packages('DBI') install.packages('RJDBC') |
library(DBI) library(RJDBC) |
Comments