| tibble-package {tibble} | R Documentation |
Provides a 'tbl_df' class (the 'tibble') that provides stricter checking and better formatting than the traditional data frame.
The S3 class tbl_df wraps a local data frame. The main
advantage to using a tbl_df over a regular data frame is the printing:
tbl objects only print a few rows and all the columns that fit on one screen,
describing the rest of it as text.
tbl_df implements four important base methods:
By default only prints the first 10 rows (at most 20), and the
columns that fit on screen; see print.tbl()
[Never simplifies (drops), so always returns data.frame
[[, $Calls .subset2() directly,
so is considerably faster. Returns NULL if column does not exist,
$ warns.
tibble() and tribble() for construction,
as_tibble() for coercion,
and print.tbl() and glimpse() for display.
Display options for tbl_df, used by trunc_mat() and
(indirectly) by print.tbl().
tibble.print_maxRow number threshold: Maximum number of rows
printed. Set to Inf to always print all rows. Default: 20.
tibble.print_minNumber of rows printed if row number threshold is exceeded. Default: 10.
tibble.widthOutput width. Default: NULL (use
width option).
tibble.max_extra_colsNumber of extra columns printed in reduced form. Default: 100.
Maintainer: Kirill Müller krlmlr+r@mailbox.org
Authors:
Hadley Wickham hadley@rstudio.com
Other contributors:
Romain Francois romain@r-enthusiasts.com [contributor]
RStudio [copyright holder]
Useful links:
Report bugs at https://github.com/tidyverse/tibble/issues