728x90
본격적인 텍스트 마이닝에 앞서 아래 패키지들이 설치되어 있는지 먼저 확인한다.
설치되어 있지 않으면 install.packages("tm") 과 같은 식으로 설치한 후 아래와 같이 실행한다.
> library("tm")
> library("SnowballC")
> library("RColorBrewer")
> library("ggplot2")
> library("Rgraphviz")
> install.packages("Rgraphviz")
Installing package into ‘C:/Users/fukaeri/Documents/R/win-library/3.1’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘Rgraphviz’ is not available (for R version 3.1.2)
위와 같이 Rgrpahviz 패키지 설치시 에러가 난다면 다음과 같이 직접 설치한다.
> source("http://bioconductor.org/biocLite.R")
> biocLite("Rgraphviz")
예제 중에 나오는 명령어에 대한 도움말은 다음과 같다.
> ?read.csv
> library(help=rattle) // 특정 패키지에 대한 도움말
728x90
'프로그래밍 Programming' 카테고리의 다른 글
03. Exploring the corpus - 전처리 및 간단한 변환 (0) | 2014.11.21 |
---|---|
02. Loading a Corpus (txt, pdf, word) (1) | 2014.11.18 |
Plot geoms(geometric objects) (1) - 추세선 그리기 (span, gam, lm, rlm) (0) | 2014.11.09 |
ggplot2 패키지 설치 및 기본사용법 (0) | 2014.11.09 |
데이터 읽기, 데이터 프레임, 세분화, 요약 (Data Handling) (0) | 2014.11.01 |