R -- rCharts 설치 실행하기
환경 : R 3.1.1, windows 7 64bit
참조 : http://ramnathv.github.io/rCharts/
http://www.rstudio.com/products/rpackages/devtools/
rCharts Documentation release 0.1.0
홈페이지에 나온대로 설치 시작했으나, 에러 발생함.
< 해결책 >
http://www.rstudio.com/products/rpackages/devtools/
> install.packages("devtools")
> require(devtools)
> install_github('rCharts', 'ramnathv')
# 팩키지 설치 후 부터는 아래만 시행하면 됨.
> require(rCharts)
> names(iris) = gsub("\\.", "", names(iris))
참고: gsub("\\.", "", names(iris)) 의미 !
-- 문자열 치환 함수. http://www.rdocumentation.org/packages/base/functions/grep
-- names(iris) 의 결과 text 중에서 pattern('.') 에 match 하는 모든 것을 '' 으로 바꿔라!
-> 즉, 글자중 . 없애기
> rPlot(SepalLength ~ SepalWidth | Species, data = iris, color = 'Species', type = 'point')
'기타' 카테고리의 다른 글
tistory 에서 mathjax 사용하기 (0) | 2015.01.05 |
---|---|
windows 에서 elasticsearch 설치하기 (0) | 2015.01.02 |
git 설치 및 사용하기 (0) | 2014.12.12 |
R markdown 사용법 (0) | 2014.12.05 |
R markdown Slidy 에 rCharts 결과 그래프 넣기 (0) | 2014.10.27 |