Friday 5 July 2019

R Tutorial | Introduction to R Programming – Features & Applications

1. Introduction to R Programming – Objective

R is one of the most widely used programming language for statistical modeling. It has become the lingua franca of data science. In this article, we will provide you with the introduction to R programming language, its examples and we will also see how R is transforming the data science industry. We will also go through the various editors, environments through which you can run the R code. We will learn about the essential R features, its applications and the development with the R scripts. At last, we will learn how to source the R script in the main IDE.
Now, let us begin our R tutorial for the beginners –
R Tutorial
R Tutorial | Introduction to R Programming – Features & Applications

2. What is R Programming Language?

R is an open-source programming language that facilitates statistical computing and graphical libraries. Being open-source, R enjoys a community support of avid developers who work on releasing new packages, updating R and making it a steadfast programming package for Data Science.  
  • With the help of R, one can perform various statistical operations.
  • You can obtain it for free from the website www.r-project.org.
  • It is driven by command lines.
  • Each command is executed when the user enters them into the prompt.
Since R is open-source, most of its routines and procedures have been developed by programmers all over the world. All the packages are available for free at the R project website called CRAN. It contains over 10,000 packages in R. The basic installation comprises of a set of tools that various data scientists and statisticians use for multiple tasks.
In R, there is a comprehensive environment that facilitates performance of statistical operations as well as generation of data analysis in graphical or text format. The commands that a console takes in as an input are assessed and subsequently executed. R is incapable of handling auto-formatting characters such as dashes or quotes, hence, you need to be discreet while copy-pasting commands from external sources into your R environment.

3. R Tutorial – History

R was conceived at the Bell Laboratories by John Chambers and in 1976.R was developed as an extension as well as an implementation of S programming language.
The R project was released in 1992, its first version in 1995 and a stable beta version in the year 2000.

4. Why Learn R Programming Language?

  • With R, you can perform statistical analysis, data analysis as well as machine learning. We can create objects, functions as well as new packages. R is platform independent and can be used across multiple operating systems. R is free owing to its open-source GNU licensing and can be installed by anyone.
  • R consists of a robust and aesthetic collection of graphical libraries like ggplot2, plotly and many more. With these libraries, you can make visually appealing and elegant visualisations. 
  • R is most widely used by the various industries. Only the academic avenues in the past made use of R but industries are now using R as their primary tool for statistical modeling. The most profound industry that makes use of R is the data science industry and the several underlying industries that it comprises of. industries like health, finance, banking, manufacturing and many more.

5. R Tutorial – Features of R

Following features of R Programming –
R Tutorial
R Tutorial – Features of R Programming
  • R is a comprehensive programming language that provides support for procedural programming involving functions as well as object oriented programming with generic functions.
  • There are more than 10,000 packages in the repository of R programming. With these packages, one can make use of functions to facilitate easier programming.
  • Being an interpreter based language, R produces a machine independent code that is portable in nature. Furthermore, it facilitates easy debugging of errors in the code.
  • R facilitates complex operations with vectors, arrays, dataframes as well as other data objects that have varying sizes. 
  • R provides robust facilities for data handling and storage.
  • As discussed in the above section, R has an extensive community support that provides technical assistance, seminars and several bootcamps to get you started with R.

6. Comparison Of R With Other Technologies

  • Graphical Libraries – R stays ahead of the curve through its aesthetic graphical libraries. Libraries like ggplot2, plotly facilitate appealing libraries for making well-defined plots.
  • Availability / Cost – R is completely free to use which means widespread availability.
  • Advancement in Tool – R supports various advanced tools and features that allow you to build robust statistical models.
  • Job Scenario – As stated above, R is the primary tool for data science. With the immense growth in data science and rise in demand, R has become the most in-demand programming language of the world today.
  • Customer Service support and community – With R, you can enjoy a strong community support.

7. R Tutorial – R Scripts

R is the primary statistical programming language for performing modeling and graphical tasks. With its extensive support for performing matrix computation, R is used for variety of tasks that involve complex datasets.
There is an entropy of freedom for carrying out selection of editing tools to perform interaction with the native console. In order to perform scripting in R, you can simply import packages and then use the provided functions to achieve results with minimal lines of code.
There are several editors and IDEs that facilitate GUI features for executing R scripts. Some of the useful editors that support R programming language are –
  • RGui (R graphical user interface)
  • Rstudio –  It is a comprehensive environment for R scripting and has more features than Rstudio.

i. R Graphical User Interface (R GUI)

R GUI is the standard GUI platform for working in R. The R Console Window forms an essential part of the R GUI. In this window, we input various instructions, scripts and several other important operations. This console window has several tools embedded in it to faciliate ease of operations. This console appears whenever we access the R GUI.
In the main panel of R GUI, go to the ‘File’ menu and select the ‘New Script’ option. This will create a new script in R.
In orde to quit the active R session, you can type the following code after the R prompt ‘>’ as follows:
  1. > q()

ii. RStudio

RStudio is an integrated and a comprehensive Integrated Development Environment for R. It facilitates extensive code editing, development as well as various features that make R an easy language to implement.
a. Features of RStudio
  • RStudio provides various tools and features that allow you to boost your code productivity.
  • It can also be accessed over the web and is cross-platform in nature.
  • It facilitates automatic checking of updates so that you don’t have to check for them manually.
  • It provides support for recovery in case of file loss.
  • With RStudio, you can manage the data more efficiently.
b. Components of RStudio
  • Source – In the top left corner of the screen is the text editor that allows you to work with in source scripting. You can enter multiple lines in this source. Furthermore, users can save the R scripts to files that are stored in local memory.
  • Console – This is present on the bottom left corner of the main window of R Studio. It facilitates interactive scripting in R.
  • Workspace and History – In the top right corner, you will find the R workspace and the history window. This will give you the list of all the variables that were created in the environment session. Furthermore, you can also view the list of past commands that were executed by R.
Files, Plots, Package, and Help the bottom right corner gives access to the following tools:
  • Files – A user can browse the various files and folders on a computer.
  • Plots – We obtain the user plots here.
  • Packages – Here, we can view the list of all the installed packages.
  • Help – We can browse the built-in help system of R with this command.

8. R Tutorial – Scripting in R

Let us start scripting in R.
Let’s create a script to print “Hello world!” in R. To create scripts in R, you need to perform the following steps:
Here in R, you will have to enclose some commands in print() to get the same output as on the command line. So you need to type below command: This takes “Hello World” as input in R.
  1. print("Hello World") #Author DataFlair

9. R Tutorial – Sourcing a Script in R

While R console provides an interactive method to perform R programming, R Studio also provides various features to develop script in the external editors like and source the script into the console. You can source either selected lines or the entire code using R GUI and R Studio.
An advantage of writing into the R editor is that multiple lines can be written at once without prompting R to evaluate them individually. You can source the script in the following ways –
In order to execute a selected line of code:
Select the line(s) of code, then press Ctrl + R in R GUI and Ctrl + Enter in RStudio. For example, we have two lines of code as follows –
  1. print("Hello")
  2. print("DataFlair")
In the above code, if you only want to print “Hello”, then select only the first line and press Ctrl + Enter in RStudio
In order to execute the entire script –
  • In R GUI, go to Edit, and then click Run All.
  • In the case of R Studio, hold and press Ctrl+Shift+ Enter.

10. Companies Using R Programming 

Some of the companies that are using R programming are as follows –
  • Facebook
  • Google
  • Linkedin
  • IBM
  • Twitter
  • Uber
  • Airbnb

10. R Tutorial – Applications of R Programming

  • R is used in finance and banking sectors for detecting fraud, reducing customer churn rate and for making future decisions.
  • R is also used by bioinformatics to analyse strands of genetic sequences, for performing drug discovery and also in computational neuroscience.
  • R is used in social media analysis to discover potential customers in the online advertising. Companies also use the social media information to analyse customer sentiments for making their products better.
  • E-Commerce companies make use of R to analyse the purchases made by the customers as well as their feedbacks.
So, this was all about the R tutorial. Hope you like our explanation.

11. Conclusion: R Tutorial

In the above article, we discussed about R and its basic information. R has become a standard name in the world of programming. It is the most used in data science and many users are opting R due to its many advantages and features. Its open-source nature makes R a much better choice for many data scientists.

No comments:

Post a Comment