[go: up one dir, main page]

0% found this document useful (0 votes)
3 views2 pages

1 Program

R is an open-source programming language used for statistical software and data analysis, designed by Ross Ihaka and Robert Gentleman. It is platform-independent, free to use, and integrates with other languages, making it popular in the data science job market. The document also provides installation instructions for R and RStudio, as well as guidance on installing and loading packages in R.

Uploaded by

avunuridevaraj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

1 Program

R is an open-source programming language used for statistical software and data analysis, designed by Ross Ihaka and Robert Gentleman. It is platform-independent, free to use, and integrates with other languages, making it popular in the data science job market. The document also provides installation instructions for R and RStudio, as well as guidance on installing and loading packages in R.

Uploaded by

avunuridevaraj
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

1.

Download and install R-Programming environment and install basic packages using
install .packages()command in R.
Brief Introduction of R Programming Language : R is an open-source programming language
that is widely used as a statistical software and data analysis tool. R generally comes with the
Command-line interface. R is available across widely used platforms like Windows, Linux,
and macOS. Also, the R programming language is the latest cutting-edge tool. It was
designed by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand,
and is currently developed by the R Development Core Team. R programming language is an
implementation of the S programming language. It also combines with lexical scoping
semantics inspired by Scheme. Moreover, the project conceives in 1992, with an initial
version released in 1995 and a stable beta version in 2000.
Use of R Programming :
 It’s a platform-independent language. This means it can be applied to all operating system.
 It’s an open-source free language. That means anyone can install it in any organization
without purchasing a license.
 R programming is used as a leading tool for machine learning, statistics, and data analysis.
Objects, functions, and packages can easily be created by R.
 R programming language is not only a statistic package but also allows us to integrate with
other languages (C, C++). Thus, can easily interact with many data sources and statistical
packages.
 The R programming language has a vast community of users and it’s growing day by day.
 R is currently one of the most requested programming languages in the Data Science job
market that makes it the hottest trend nowadays

1. Installation of R-Studio on windows:


Step – 1: With R-base installed, let’s move on to installing RStudio. To begin, goto download
RStudioand click on the download button for RStudio desktop.
Step–2: Click on the link for the windows version of RStudio and save the.exe file.
Step–3: Run the .exe and follow the installation instructions. Click Next on the welcome
window. Enter/ browse the path to the installation folder and click Next to proceed.
Select the folder for the start menu shortcut or click on do not create shortcuts and then click
Next. Wait for the installation process to complete.
Click Finish to end the installation
OUTPUT:

Install the R Packages:-


 First, run RStudio.
 After clicking on the packages tab, click on install. The following dialog box will appear.
 In the Install Packages dialog, write the package name you want to install under the
Packages field and then click install.
This will install the packageyousearchedfororgiveyoualistofmatchingpackagesbasedonyour
package text.
Installing Packages:-
Loading Packages:-
Once the package is downloaded to your computer you can access the functions and
Resources provided by the package in two different ways:
#load the package to use in the current R session library (package name)
Getting Help on Packages:- "C:/Program Files/R/R-3.2.2/library" install.packages("Package
Name")
# Install the package named "XML". install.packages("XML")

You might also like