How to install R and RStudio? (2024)

Note that this article is inspired from the lecture notes of Prof.Johan Segers and my personal notes as teaching assistant for his course entitled “Multivariate statistical analysis” given at UCLouvain.

R

The statistical program R is nothing more than a programming language, mainly used for data manipulation and to perform statistical analyses. At the time of writing, this language is (one of) the leading program in statistics, although not the only programming language used by statisticians.

In order to use R, we need two things:

  • a text editor in which to write our code
  • a place to run this code

RStudio

This is where RStudio comes handy.

RStudio is an integrated development environment (IDE) for R. R and RStudio work together. R is a program that runs all your code, and RStudio is another program that allows you to control R in a more comfortable and friendly way. RStudio has the advantage of offering both a powerful text editor for writing your code and a place to run the code written in this editor.

For these reasons, I highly recommend using RStudio instead of R. I use RStudio (and not R) on a daily basis and you will see that all articles on this blog is written in RStudio.

Note that RStudio requires the prior installation of the R software provided by CRAN in order to be able to function properly. Just installing RStudio on your personal computer is not enough. See the next section on how to install both.

You can download R at https://cran.r-project.org/mirrors.html. Select the CRAN mirror site closest to your country. If there are more than one links for your country, simply select one:

How to install R and RStudio? (1)

Select the CRAN mirror site closest to your country

Then in the box labeled “Download and Install R” (located at the top), click on the link corresponding to your operating system (Windows, Mac or Linux):

How to install R and RStudio? (2)

Click on the link corresponding to your operating system

Now that R is installed on your computer, you can download RStudio. You can download the free version of RStudio (which is totally enough for most users, including me!) on their website.

Now that both programs are installed on your computer, let’s dive into the main components of RStudio.

By default, the RStudio window has three panes:

  1. The console (red pane)
  2. The environment (green pane)
  3. Files, plots, help, etc. (blue pane)

How to install R and RStudio? (3)

RStudio window

The console (red pane) is where you can execute your code (more information on the red and blue panes later). By default, the text editor does not open automatically. To open it, click on File > New File > R Script or click on the button representing a white sheet marked with a small green cross in the upper left corner, then on R Script:

How to install R and RStudio? (4)

New R script in RStudio

A new pane (in orange below), also known as the text editor, opens in which you will be able to write your code. The code will be executed and the results displayed in the console (red pane).

How to install R and RStudio? (5)

Write and execute your code in RStudio

Note that you can also write code in the console (red pane). However, I strongly recommend writing your code in the text editor (orange pane) because you can save the code written in the text editor (and thus execute it again later), while you cannot save the code written in the console.

To execute code written in the text editor (orange pane), you have two options:

  • Type your code and then press the “Run” button (see below) or use the keyboard shortcut CTRL + Enter (cmd + Enter on Mac). Only the chunk of code where your cursor is located will then be executed.
  • Type your code and select in the text editor the part you want to execute and then press the “Run” button or use the keyboard shortcut CTRL + Enter (cmd + Enter on Mac). All the selected code will be executed

How to install R and RStudio? (6)

Run code in RStudio

For example, try typing 1+1 in the text editor and execute it by clicking on “Run” (or CTRL/cmd + Enter). You should see the result 2 in the console, as shown in the screenshot below:

How to install R and RStudio? (7)

Example of code executed in RStudio

The text editor and the console are the panes you will use most often. The two other panes (the blue and green panes introduced earlier) will however still be very useful when using RStudio.

The environment (green pane) displays all values stored by RStudio. For example, if you type and execute the code a = 1, RStudio will store the value 1 for a, as shown in the screenshot below:

How to install R and RStudio? (8)

Environment pane in RStudio

This means that you can now perform any computations with a, such that if you execute a + 1, RStudio will render 2 in the console. In this pane you can also see a tab with a history of the code executed and a button to import a dataset (more on importing a dataset in RStudio).

The last pane (blue) is where you will find everything else such as your files, the plots, the packages, the help documentation, etc. I discuss about the Files tab in more detail here so let’s discuss about the other tabs:

  • Plot: where you will see the rendered plots. For instance, run plot(1:10) and you should see it in this tab. If you plotted more than one plots, you can navigate between them by clicking on the arrows. You can open the plot in a new window by clicking on Zoom and export your plot by clicking on Export. Those buttons are located just under the Plot tab (see figure below)
  • Packages: where you see all your installed packages. Only fundamental functionalities come with R. Everything else must be installed from packages. Remind that R is open source; everyone can write code and publish it as a package. You are then able to use this package (and all functions built inside this package) for free. Some packages are installed by default, all others must be installed by running install.packages("name of the package") (do not forget "" around the name of the package!). Once the package is installed, you must load the package and only after it has been loaded you can use all the functions it contains. To load a package, run library(name of the package) (this time "" around the name of the package are optional, but can still be used if you wish). You also have the possibility to install and load packages via the buttons under the Packages tab. For this, click on the button Install under Packages, type the name of the package you want to install and then click on Install. You will see that the code appears in the console. To load the package, find the package you want to load in the Packages window (you can use the search box), then click on the checkbox next to the name of the package. Again, the code is run in the console. See the figures below if needed. Note that you will need to install packages only once,1 but load packages each time you open RStudio. Furthermore, note that an internet connection is required to install a package, while it is not required to load a package
  • Help: documentation about all functions written for R. To access the help of a function, run help("name of the function") or simply ?name of the function. For example, to see the help about the mean function, run ?mean. You can also press F1 while having your cursor on a function

How to install R and RStudio? (9)

Plot buttons in RStudio

How to install R and RStudio? (10)

Step 1: click on the Install button

How to install R and RStudio? (11)

Step 2: type the name of the package and click on Install

How to install R and RStudio? (12)

Step 3: load your package by clicking on the box next to the package’s name

Now that you have installed R and RStudio and you know its main components, below are some examples of basic code.

More advanced code and analyses are presented in other articles about R, and in particular in this article about data manipulation in R.

Calculator

Compute \(5*5\)

5 * 5
## [1] 25

Compute \(\frac{1}{\sqrt{50\pi}}\, e^{-\frac{(10 - 11)^2}{50}}\)

1 / sqrt(50 * pi) * exp(-(10 - 11)^2 / 50)
## [1] 0.07820854

As you can see, some values like \(\pi\) are stored by default so you do not need to specify its value. Note that RStudio is case sensitive, but not space sensitive. This means that pi is different than Pi but 5*5 gives the same result than 5 * 5.

Comments

To add comments in your code, use # before the code:

# A comment# Another comment1 + 1
## [1] 2

Store and print values

Note that in order to store a value inside an object, using = or <- is equivalent. I however recommend using <- to follow the guidelines of R programming. You can name your objects (A and B in our case) as you like. However, it is recommended to use short and concise names (as you will most likely type them several times) and avoid special characters.

A <- 5B <- 6

When storing values, RStudio does not display it on the console. To store a value AND print it in the console, use:

(A <- 5)
## [1] 5

or:

A <- 5A
## [1] 5

Vectors

It is also possible to store more than one value inside an object via the function c() (c stands for combine).

A <- c(1 / 2, -1, 0)A
## [1] 0.5 -1.0 0.0

Matrices

Or create a matrix via matrix():

my_mat <- matrix(c(-1, 2, 0, 3), ncol = 2, nrow = 2)my_mat
## [,1] [,2]## [1,] -1 0## [2,] 2 3

You can access the help of this function via ?matrix or help("matrix"). Note that inside a function, you can have multiple arguments separated by a comma. Inside matrix(), the first argument is the vector c(-1, 2, 0, 3), the second is ncol = 2 and the third is nrow = 2. For all functions in RStudio, you can specify an argument by its order inside the function or by the name of the argument. If you specify the name of the argument, the order does not matter anymore, so matrix(c(-1, 2, 0, 3), ncol = 2, nrow = 2) is equivalent to matrix(c(-1, 2, 0, 3), nrow = 2, ncol = 2):

my_mat2 <- matrix(c(-1, 2, 0, 3), nrow = 2, ncol = 2)my_mat2
## [,1] [,2]## [1,] -1 0## [2,] 2 3
my_mat == my_mat2 # is my_mat equal to my_mat2?
## [,1] [,2]## [1,] TRUE TRUE## [2,] TRUE TRUE

Generate random values

To generate 10 values based on a normal distribution with mean \(\mu = 400\) and standard deviation \(\sigma = 10\):

my_vec <- rnorm(10, mean = 400, sd = 10)# Display only the first 5 values:head(my_vec, 5)
## [1] 413.7096 394.3530 403.6313 406.3286 404.0427
# Display only the last 5 values:tail(my_vec, 5)
## [1] 398.9388 415.1152 399.0534 420.1842 399.3729

You will have different values than mines due to the fact that they are randomly generated. If you want to make sure to have always the same random values, use set.seed() (with any numeric inside the brackets). For instance, with the following code, you should have the exact same values, no matter where and when you run it:

set.seed(42)rnorm(3, mean = 10, sd = 2)
## [1] 12.741917 8.870604 10.726257

Plot

plot(my_vec, type = "l", # "l" stands for line main = "Plot title", ylab = "Y-axis label", xlab = "X-axis label")

How to install R and RStudio? (13)

Thanks for reading.

I hope this article helped you to install R and RStudio.

This is only a very limited introduction to the possibilities of RStudio. If you want to learn more, I recommend that you read other articles related to R, starting with how to import an Excel file or how to manipulate a dataset in R.

As always, if you have a question or a suggestion related to the topic covered in this article, please add it as a comment so other readers can benefit from the discussion.

How to install R and RStudio? (2024)
Top Articles
Table of contents for November 15, 2017 in The Hollywood Reporter
How to Decorate in Contemporary Style
Cottonwood Vet Ottawa Ks
Angela Babicz Leak
4-Hour Private ATV Riding Experience in Adirondacks 2024 on Cool Destinations
Ofw Pinoy Channel Su
Gore Videos Uncensored
Seething Storm 5E
Www Movieswood Com
Bed Bath And Body Works Hiring
Katie Boyle Dancer Biography
Swimgs Yung Wong Travels Sophie Koch Hits 3 Tabs Winnie The Pooh Halloween Bob The Builder Christmas Springs Cow Dog Pig Hollywood Studios Beach House Flying Fun Hot Air Balloons, Riding Lessons And Bikes Pack Both Up Away The Alpha Baa Baa Twinkle
You can put a price tag on the value of a personal finance education: $100,000
LA Times Studios Partners With ABC News on Randall Emmett Doc Amid #Scandoval Controversy
Slope Unblocked Minecraft Game
How Many Slices Are In A Large Pizza? | Number Of Pizzas To Order For Your Next Party
Burn Ban Map Oklahoma
Money blog: Domino's withdraws popular dips; 'we got our dream £30k kitchen for £1,000'
Carolina Aguilar Facebook
Pekin Soccer Tournament
Lcwc 911 Live Incident List Live Status
Edicts Of The Prime Designate
Unforeseen Drama: The Tower of Terror’s Mysterious Closure at Walt Disney World
Kashchey Vodka
Best Mechanics Near You - Brake Masters Auto Repair Shops
Homeaccess.stopandshop
Www.dunkinbaskinrunsonyou.con
Обзор Joxi: Что это такое? Отзывы, аналоги, сайт и инструкции | APS
FAQ's - KidCheck
Tu Housing Portal
Greater Orangeburg
County Cricket Championship, day one - scores, radio commentary & live text
The Menu Showtimes Near Amc Classic Pekin 14
Unm Hsc Zoom
Moxfield Deck Builder
Solemn Behavior Antonym
Dr Adj Redist Cadv Prin Amex Charge
Today's Gas Price At Buc-Ee's
Is Arnold Swansinger Married
Pp503063
craigslist: modesto jobs, apartments, for sale, services, community, and events
Mudfin Village Wow
Dwc Qme Database
Mitchell Kronish Obituary
Login
Advance Auto.parts Near Me
Sara Carter Fox News Photos
2294141287
Star Sessions Snapcamz
Okta Login Nordstrom
Wieting Funeral Home '' Obituaries
Arre St Wv Srj
Latest Posts
Article information

Author: Horacio Brakus JD

Last Updated:

Views: 5327

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Horacio Brakus JD

Birthday: 1999-08-21

Address: Apt. 524 43384 Minnie Prairie, South Edda, MA 62804

Phone: +5931039998219

Job: Sales Strategist

Hobby: Sculling, Kitesurfing, Orienteering, Painting, Computer programming, Creative writing, Scuba diving

Introduction: My name is Horacio Brakus JD, I am a lively, splendid, jolly, vivacious, vast, cheerful, agreeable person who loves writing and wants to share my knowledge and understanding with you.