Skip to content

Commit ca53779

Browse files
authored
Update r-basics-with-tabular-data.md
Replace broken link with perma.cc.
1 parent 4a0bd93 commit ca53779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/lessons/r-basics-with-tabular-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ R can do more than just simple arithmetic. You can create [objects](https://en.w
110110
[1] 112
111111
```
112112

113-
R is case sensitive, so be careful that you use the same notation when you use the variables you have assigned (or named) in other actions. See Rasmus Bååth's article, [The State of Naming Conventions in R](https://journal.r-project.org/archive/2012-2/RJournal_2012-2_Baaaath.pdf), for more information on how to best name variables.
113+
R is case sensitive, so be careful that you use the same notation when you use the variables you have assigned (or named) in other actions. See Rasmus Bååth's article, [The State of Naming Conventions in R](https://perma.cc/ME6W-JZJQ), for more information on how to best name variables.
114114

115115
To remove a variable from the console, type `rm()` with the variable you want to get rid of inside the brackets, and press *Enter*. To see all of the variables you have assigned, type `ls()` into the console and press *Enter* - this will help you avoid using the same name for multiple variables. This is also important because R stores all of the objects you create in its memory, so even if you cannot see a variable named `x` in the console, it may have been created before and you could accidentally overwrite it when assigning another variable.
116116

0 commit comments

Comments
 (0)