You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: labs/making-maps-in-r/02-data-wrangling-in-r.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ or
74
74
select(rds, -(3:4))
75
75
```
76
76
77
-
Note that here I need to put `1:2` in parentheses so it knows to remove all the columns 1 to 10, and doesn't start by trying to remove a (non-existent) column number -1.
77
+
Note that here I need to put `3:4` in parentheses so it knows to remove all the columns 1 to 10, and doesn't start by trying to remove a (non-existent) column number -3.
78
78
79
79
### Selecting rows
80
80
We look at filtering based on data in the next section. If you just want rows, then use `slice()`
0 commit comments