본문 바로가기

R

R 상위버전 설치

Ubuntu를 사용하는 유저라면 R을 아래와 같이 설치할 수 있다.

 $ sudo apt-get install r-base


설치후 아래와 같은 명령어로 R version을 확인해보면 아마도? 메이비? 2.14 version이 설치되어 있을 것이오!!

R.Version()

물론 해당 버전으로 R을 사용하는데 크게 문제는 없다. 하지만... 말이오... 일부 Package의 경우 하위 R버전을 지원하지 않는단 말이오!!! 말이오~~~ ^^ 2.15 이상이거나 3.0 이상부터 지원하는 Package도 꽤 많다오...


그래서 우린 뛰어난 똑똑이들이 만들어놓은 Package를 R version의 문제로 사용 못하게 되는 일이 없도록 R 상위버전을 설치할 필요가 있다... 그래서 방법을 알려주겠소...


sources.list파일을 열어서 아래 두줄을 추가해주시오.

 $ sudo vi /etc/apt/sources.list


여기서 precise는 Ubuntu 버전이라오.

 deb http://cran.cnr.berkeley.edu/bin/linux/ubuntu/ precise/

 deb http://cran.cnr.berkeley.edu/bin/linux/ubuntu/ precise-update/


sources.list에 추가 후 apt key 인증을 실행해주시오.

 $ gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9

 $ gpg -a --export E084DAB9 | sudo apt-key add -


이미 설치가 되어있다면 update & upgrade

 $ sudo apt-get update

 $ sudo apt-get upgrade


이제 설치를 해보면 R 최신버전이 3.0이 설치될것이오..

 $ sudo apt-get install r-base


짠~

 $ R

R version 3.0.2 (2013-09-25) -- "Frisbee Sailing"

Copyright (C) 2013 The R Foundation for Statistical Computing

Platform: x86_64-pc-linux-gnu (64-bit)


R is free software and comes with ABSOLUTELY NO WARRANTY.

You are welcome to redistribute it under certain conditions.

Type 'license()' or 'licence()' for distribution details.


  Natural language support but running in an English locale


R is a collaborative project with many contributors.

Type 'contributors()' for more information and

'citation()' on how to cite R or R packages in publications.


Type 'demo()' for some demos, 'help()' for on-line help, or

'help.start()' for an HTML browser interface to help.

Type 'q()' to quit R.


'R' 카테고리의 다른 글

R data.table  (1) 2014.02.07
R DB Connection  (0) 2014.01.28
R 상관분석(Correlation) 시각화  (2) 2014.01.24