Print object using brackets (save a line) (#314)
This commit is contained in:
parent
e6a99ee9cb
commit
27f3955480
|
@ -392,8 +392,7 @@ There are many functions for creating new variables that you can use with `mutat
|
|||
conjunction with `group_by()`, which you'll learn about shortly.
|
||||
|
||||
```{r}
|
||||
x <- 1:10
|
||||
x
|
||||
(x <- 1:10)
|
||||
lag(x)
|
||||
lead(x)
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue