print.tbl_df {dplyr} | R Documentation |
Tools for describing matrices
## S3 method for class 'tbl_df' print(x, ..., n = NULL, width = NULL) ## S3 method for class 'tbl_dt' print(x, ..., n = NULL, width = NULL) ## S3 method for class 'tbl_sql' print(x, ..., n = NULL, width = NULL) dim_desc(x) trunc_mat(x, n = NULL, width = NULL)
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 |
dim_desc(mtcars) 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)