dplyr (version 0.2)

print.tbl_df: Tools for describing matrices

Description

Tools for describing matrices

Usage

# S3 method for tbl_df
print(x, ..., n = NULL)

# S3 method for tbl_dt print(x, ..., n = NULL)

# S3 method for tbl_sql print(x, ..., n = NULL)

dim_desc(x)

trunc_mat(x, n = NULL)

Arguments

x
Object to show.
n
Number of rows to show. If NULL, the default, will print all rows if less than option dplyr.print_max. Otherwise, will print dplyr.print_min

Examples

Run this code
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)

Run the code above in your browser using DataLab