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.
|
conjunction with `group_by()`, which you'll learn about shortly.
|
||||||
|
|
||||||
```{r}
|
```{r}
|
||||||
x <- 1:10
|
(x <- 1:10)
|
||||||
x
|
|
||||||
lag(x)
|
lag(x)
|
||||||
lead(x)
|
lead(x)
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue