print.tbl_df {tibble} | R Documentation |
Tools for describing matrices
## S3 method for class 'tbl_df' print(x, ..., n = NULL, width = NULL) trunc_mat(x, n = NULL, width = NULL, n_extra = 100)
x |
Object to show. |
n |
Number of rows to show. If |
width |
Width of text output to generate. This defaults to NULL, which
means use |
trunc_mat(mtcars) print(tbl_df(mtcars)) print(tbl_df(mtcars), n = 1) print(tbl_df(mtcars), n = 3) print(tbl_df(mtcars), n = 100)