R is a free under GNU project and powerful language and environment for statistical computer and graphic programming. R can run on all platforms (Linux, Windows, Mac, Unix). With R you can calculate, display graphical charts/results, or data manipulate.
I will show you how to install R on Linux in this article.
Install R on Fedora:
$ sudo yum update -y $ sudo yum install -y R
Install R on Centos 32 bit
# rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # yum install -y R
Install R on Centos 64 bit
# rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # yum install -y R
Install R on Debian/Ubuntu:
$ sudo apt-get update $ sudo apt-get install r-base
Start using R:
Open the Terminal, and type: R
$ R