Tibble printing tip

This commit is contained in:
hadley 2016-07-22 09:33:12 -05:00
parent 0d0c9c1815
commit 1c9d8974f4
1 changed files with 7 additions and 0 deletions

View File

@ -67,6 +67,13 @@ You can control the default appearance with options:
* `options(tibble.width = Inf)` will always print all columns, regardless
of the width of the screen.
To show all the columns in a single tibble, explicitly call `print()` with `width = Inf`:
```{r, eval = FALSE}
nycflights13::flights %>%
print(width = Inf)
```
You can see a complete list of options by looking at the package help: `package?tibble`.
### Subsetting