Skip to main content

R Language Installation process


Introduction to R language


R is basically a language of Data Science.


Ranking


The image show the ranking from the survey of the data mining experts on the software they use most often in their work. In this image we see that the R language is on the first position also the Python is in fourth position in the list but it is also a great tool for the same. 
 
Some of the reasons are listed below why R-Language is on top:

1.      Its free and open source.

2.      It is optimized for vector operations

3.      It has great community where are lot of supportive people.

 4.      It has 9000 plus contributed and third party packages available to get the task done.


·         Next thing is to install and setting up R language:

Firstly we have to install the R language for which the steps are as follows:
 
Step 1 :

Visit the link given below . After the link gets open the home page of the site will be as shown in the image below


R home page


Step 2:

After the page gets open you have to click on the download which is been highlighted in the image above . Which will redirect you on the below page which will list app the places where you can download the software. But I specially recommend the link which is been highlighted in the image below.

 
recommended installation page


Step 3:
After visiting this link it will ask you about the operating system which you are using.
 
System Selection

If you are using MAC you have to select the package shown in image.

MAC software
For Windows install the following which will again redirect you to next page . Make sure that the version you are installing is V3.6.2 or above.
Windows Software


Till now we have seen about the basic installation of R. But most of the user also uses R studio for programming .

If you also want to use R studio follow the below.

Note : Though you want to use RStudio you have to install the basic setup of R.












Step 1:


Visit on the Link shown in the image and click on the highlighted button.





Step 2:

Now you have to choose the desktop version from the bellow page.



Step 3:

Click on the free version shown in the image which will redirect you on the page where you have to select the OS you are using.




·       




           Now we are ready to go. After the installation gets done . You can open the R studio for programming and the interface will look like the image below




    You can also visit for information regarding R studio







 

Comments

Popular posts from this blog

R Studio

Introduction to R studio: The image shown is the interface of the R studio software which is lot more organized and we are going to see each of the panels and their properties one by one.   R Interface In this image the highlighted panel is used for the scripting purpose in the R which is also known as source window. Here we are going to write the code for which we are performing the task. This is one of the most important panel of R studio. Source Now this highlighted panel is the console where we will see the output of the code we are going to execute. This will show us the output produced from the code we have written in the script panel. It will also show us the error if any in the code. Console This panel is known as global environment. The main function of this panel is to store the object or we can say the variable which is been created by the user. Global Environment And this last panel is a combina...

R features

Why we use R: }   Availability R programming language is open source. This makes it highly cost effective for a project of any size. Since it is open source, developments in R happen at a rapid scale and the community of developers is huge }   Data wrangling Data wrangling is the process of cleaning messy and complex data sets to enable convenient consumption and further analysis. This is a very important and time taking process in data science. R has an extensive library of tools for database manipulation and wrangling. For   Example   dplyr,stingr. }   Data visualization Data visualization is the visual representation of data in graphical form. This allows analyzing data from angles which are not clear in unorganized or tabulated data. R has many tools that can help in data visualization, analysis, and representation. }   Specificity R is a language designed especially for statistical analysis and data reconfiguration. All the ...