Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix-typo #104

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions basics/04-Programming-Basics/04-Programming-Basics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ R is easiest to use when you know how the R language works. This tutorial will t

### Run a function

Can you use the `sqrt()` function in the chunk below to compute the square root of 962?
Can you use the `sqrt()` function in the chunk below to compute the square root of 961?

```{r functions-1, exercise = TRUE}

Expand Down Expand Up @@ -258,7 +258,7 @@ iris

### rm()

What if you accidentally overwrite an object? If that object came with R or one of its packages, you can restore the original version of the object by removing your version with `rm()`. Run `rm()` on `iris` below to restore the iris data set.
What if you accidentally overwrite an object? If that object came with R or one of its packages, you can restore the original version of the object by removing your version with `rm()`. Run `rm()` on `iris` below to restore the iris data set. Then print `iris` again to show that the original version has been restored.

```{r objects-5, exercise = TRUE}
iris <- 1
Expand Down