R is a very powerful tool for statistics, graphics, and statistical programming. It is quite popular and used by tens of thousands of people daily to perform serious statistical analyses, moreover, It is a free, open-source system having more than 2,000 available add-ons and many packages are coming almost every day.
Windows and OSX users can download R from CRAN - the “Comprehensive R Archive Network”. Linux and Unix users can install R packages using their package management tool:
The major Linux distributions have packages for installing R. For example:
Distribution | Package Name |
Ubuntu or Debian | r-base |
Red Hat or Fedora | R.i386 |
Suse | R-Base |
Use the system’s package manager to download and install the package. Normally, you will need the root password or sudo privileges; otherwise, ask a system administrator to perform the installation.
Installing R on Windows or OS X is quite straightforward as prebuilt binaries are available for those platforms. You need only to follow the preceding instructions. The CRAN Web pages also contain links to installation-related resources, such as frequently asked questions (FAQs) and tips for special situations.
Theoretically, one can install R on Linux or Unix in one of two ways: by installing a distribution package or by building it from scratch. In practice, installing a package is the preferred route. The distribution packages greatly streamline both the initial installation and subsequent updates.
On Ubuntu or Debian, use apt-get to download and install R. Run under sudo to have the necessary privileges:
$ sudo apt-get install r-base
On Red Hat or Fedora, one can use yum:
$ sudo yum install R.i386
Beyond the base package, installing the documentation package is also recommended. For example, one can install useful R-manuals locally by:
$ sudo apt-get install r-base-html r-doc-html
Some Linux repositories also include prebuilt copies of R packages available on CRAN.
A very useful place to know more about the R installation and administration is: R Installation and administration
R has got a very rich collection of pre-built packages which help the practitioners to accomplish the job quite easily. Before one can start using the packages on the go, he has to install the package in the R-environment:
The command for installing the packages in R-Environment:
> install.packages(‘package name’)
> library(package name)
If someone wants to learn more detail about the ‘function’, the following commands can come really handy there:
‘help’ – to display the documentation for the function
> help(function name)
‘args’ – for a quick reminder of the function arguments
> args(function name)
‘example’ – to see examples of using the function
> example(function name)
Searching the web for the help:
Inside R, use the RSiteSearch function to search by keyword or phrase:
> RSiteSearch(“key phrase”), and inside your browser, you can try exploring the following sites:
Rseek.org - This is a Google custom search that is focused on R-specific websites.
Stackoverflow - Stack Overflow is a searchable Q&A site oriented toward programming issues such as data structures, coding, and graphics.
https://stats.stackexchange.com - The Statistical Analysis area on Stack Exchange is also a searchable Q&A site, but it is oriented more toward statistics than programming.
Given the vast number (more than 2000!)of packages available in R, the problem of finding the most useful package may appear to be quite overwhelming. There are ways which could help someone in this scenario: A task view is a great place to start since you get an overview of what’s available. Suppose you happen to know the name of a useful package—say, by seeing it mentioned online. A complete, alphabetical list of packages is available at http://cran.r -project.org/web/packages/ with links to the package summary pages.
You can download and install an R package called sos that provides powerful other ways to search for packages; see the vignette at https://cran.rproject.org/web/packages/sos/vignettes/sos.pdf.
R-studio is an application that makes using R much easier. Also, the RStudio interface looks the same for Windows, Mac OS, and Linux. You can download RStudio for free. Just click the “Download RStudio” button and follow the simple instructions that follow. Once you’ve installed RStudio, you can open it like any other program on your computer—usually by clicking an icon on your desktop.
This module of the tutorial shares quick check-points to get start
Thanks for this info.
C# is an object-oriented programming developed by Microsoft that uses ...
Leave a Reply
Your email address will not be published. Required fields are marked *