Skip to Tutorial Content

Introduction

This tutorial is an introduction to the general use of R tutorials created with the learnr package. It is meant for beginning students who have never completed a tutorial.

You may complete a tutorial either on your laptop or on a cloud computing platform like Posit Cloud. (See our discussion about setting up your own computer and about using Posit Cloud.) Either way, you will download a copy of your answers to the Downloads folder on your computer once you are done. Then, you will submit your answers to your instructor and/or keep a copy for yourself.

Most tutorials begin by asking for your your name and email. (Your instructor might also request that you fill in the “ID” field so that your work can be matched to a grading database. If not, leave this field blank.) Click “Continue” and then fill in your name and email. Click the “Submit Answer” button. If you make a mistake, you can click “Try Again” and, uh, try again.

Information

Exercises

In each tutorial, there will be a set of exercises for you to complete. For non-coding questions, you write your answer and then hit the “Submit Answer” button, as you did above.

Clicking “Start Over” — look for small letters at the bottom of the left-hand side menu — deletes all your work for a tutorial and allows you to begin the entire tutorial again. (If you are working on your tutorial in the Tutorial tab, the screen might not be wide enough to show the left-hand side menu. If so, just expand the Tutorial tab until it appears.)

Exercise 1

Let’s practice some simple math. Type 4 + 5 into the box below. Hit “Run Code” to see your results. Clicking “Hint” gives you a hint about what to type.

4 + 5

Once you click “Run Code”, the answer [1] 9 should appear below the code you entered. This is the same behavior you would see if you ran this code in the RStudio Console tab.

There are two types of answers for tutorial questions: prose and code. With prose answers, you will use the “Submit Answer” button, as you did with your name and email. With code answers, you use the “Run Code” button, as you did for this question.

If you don’t “Run Code” (or “Submit Answer”) your response, nothing is recorded.

Exercise 2

Let’s use variables to perform the same calculation. Below, we have already assigned 5 to x and 4 to y. On the line below those two provided lines of code, add the two variables by typing x + y. Hit “Run Code” to see your results.

x <- 5
y <- 4
x <- 5
y <- 4
x + y

Once you click “Run Code”, the answer [1] 9 should appear below the code you entered.

Exercise 3

We will often need to copy code from our previous exercises to continue working on a multi-stage problem. To make this easier, we provide a Copy previous code button. Below the following box, click on the Copy previous code button.

x <- ...
y <- 10
x + ...

This should paste all work from the previous exercise into the above exercise code area. Note that this will only copy code which has already been run in the previous exercise.

Change the values to x <- 6 and y <- 10. Hit “Run Code”. You should get the answer 16.

Note that the assignment symbol, <-, is a less-than-sign followed by a dash. We often pronounce the symbol as “gets.” So, we might say, when reading this code, that “x gets 6.”

Did you remember to hit the “Run Code” button above? Lots of people forget! You must hit the button for your answer to be recorded.

If you used the hint, note how we did not provide the entire answer. This is our standard approach with hints.

Exercise 4

Read all of the following instructions before continuing, as this tutorial will close once you take the first step.

Restart your R session by clicking Session -> Restart R from the main RStudio Menu. (Note that restarting R within this RStudio instance is a different thing than restarting the overall RStudio instance itself.)

You should receive the warning message shown below. (Note that this box might be “hidden” behind your tutorial.) Whenever you see this warning message, keep in mind that clicking “Terminate Jobs” will close any running tutorials.

Click “Terminate Jobs”. This will “grey out” the tutorial. (You might also have to close the tutorial window by hand and/or hit the “Return to home” button, the little house icon with the red roof located just below the word “Environment.”)

Re-open this tutorial by clicking “Start Tutorial” in the Tutorial tab, just as you did at the start of the tutorial. Progress will have been saved automatically.

Now that you have read all the instructions, go ahead and follow them.

Note how all your answers to previous questions have been saved. It is not a problem to quit a tutorial. In fact, if you ignore a tutorial for awhile, it will quit automatically.

Exercise 5

We often ask you to execute an R command in the R Console, the tab on the left portion of your RStudio screen. Type version[['version.string']] into the Console and hit the return key.

Do not just paste the command into the answer box! You must paste the command into the R Console and then execute the command.

Copy/paste the command and the return value into this box.

Your answer should look something like:

> version[['version.string']]
[1] "R version 4.4.0 (2024-04-24)"
> 

Your version of R may be more recent, but it should not be older. It is OK if your formatting differs from ours. Exactness does not matter. What matters is that you prove that you have executed the command as instructed.

The tutorial workflow will often look like this. We tell you to run a command in the Console. You run it. We then ask you to copy/paste, from the Console, both the command itself and the response returned. Because we ask you to copy/paste the command/response so often, we usually shorten this instruction to CP/CR.

Exercise 6

RStudio and your R installation have some default settings which are not good for new users. Run this command at the Console to change them:

tutorial.helpers::set_rstudio_settings()

CP/CR.

The output from this function will report the changes, if any, which were made. To learn more, look up the help page by running ?set_rstudio_settings at the Console.

You can generally call functions by just giving their name along with the ending parentheses, as with set_rstudio_settings(). However, it can be safer to preface the function name with the name of the package in which the function is found, separated by two colons. Since set_rstudio_settings() is in the tutorial.helpers package, we can also call it using the double colon notation: tutorial.helpers::set_rstudio_settings().

Exercise 7

Run this command from the R Console.

rstudioapi::readRStudioPreference(name = "load_workspace", NA)

CP/CR.

You should have pasted something like this in the box above:

> rstudioapi::readRStudioPreference(name = "load_workspace", NA)
[1] FALSE
>

The response should be FALSE. If it is not, try re-running tutorial.helpers::set_rstudio_settings().

You have now selected sensible settings for using RStudio.

Exercise 8

Tutorials can include written responses. You have already seen several examples. Sometimes those written answers are just copies of the R commands and their results. Other times, we will ask you to write one or more sentences of prose.

Copy and paste everything from Exercise 8 above through the end of this sentence into the answer box below. That is, you are copying from this tutorial, not from the Console. Press “Submit Answer.”

Your answers

At the end of every tutorial, you will save your work (and submit it, at the discretion of your instructor). We will do this in the next panel, labeled “Submit.” Follow the instructions there.

Make sure to answer the question about how many minutes you spent on the tutorial and to click “Submit Answer.”

After hitting the “Download” button, you will be prompted to save a file named getting-started_answers with a suffix which depends on the button you selected. You may download your answers as rds, html or pdf files. This file will be saved in the default Downloads folder on your computer, even if you completed the tutorial on a cloud computing platform. If you want, you may download multiple formats.

Download answers

When you have completed this tutorial, follow these steps:
  1. Click a button to download a file containing your answers.
  2. Save the file onto your computer in a convenient location.
Download RDS Download HTML Download PDF

(If no file seems to download, try clicking with the alternative button on the desired download option and choose "Save link as...")

Summary

You now understand how tutorials function and how to download copies of your answers. Good luck with your data science journey!

Getting Started with Tutorials

David Kane