This function prints a (possibly abbreviated) data.frame.
Usage
print_data.frame(
x,
rows = NULL,
cols = NULL,
digits = NULL,
row.names = TRUE,
col.names = TRUE
)Arguments
- x
[
data.frame]
Adata.frame.- rows, cols
[
integer(1)|NULL]
The number of rows or columns to be printed, greater or equal2.Printing is abbreviated in the middle.
Can be
NULLto print everything.- digits
[
integer(1)|NULL]
The number of decimal places to be used.Negative values are allowed, resulting in rounding to a power of ten.
Can be
NULLto not round.- row.names, col.names
[
logical(1)]
Print row names or column names?
Examples
x <- data.frame(1:10, LETTERS[1:10], stats::rnorm(10))
print_data.frame(x, rows = 7)
#> X1.10 LETTERS.1.10. stats..rnorm.10.
#> 1 1 A -1.2736435
#> 2 2 B 0.5063374
#> 3 3 C 1.2331551
#> 4 4 D -1.0111584
#>
#> <3 rows hidden>
#>
#> 8 8 H -0.6590084
#> 9 9 I -1.9778145
#> 10 10 J -0.5471976
print_data.frame(x, rows = 7, cols = 2)
#> X1.10 <1 col hidden> stats..rnorm.10.
#> 1 1 - -1.2736435
#> 2 2 - 0.5063374
#> 3 3 - 1.2331551
#> 4 4 - -1.0111584
#>
#> <3 rows hidden>
#>
#> 8 8 - -0.6590084
#> 9 9 - -1.9778145
#> 10 10 - -0.5471976
print_data.frame(x, rows = 7, cols = 2, digits = 1)
#> X1.10 <1 col hidden> stats..rnorm.10.
#> 1 1 - -1.3
#> 2 2 - 0.5
#> 3 3 - 1.2
#> 4 4 - -1.0
#>
#> <3 rows hidden>
#>
#> 8 8 - -0.7
#> 9 9 - -2.0
#> 10 10 - -0.5
print_data.frame(x, rows = 7, cols = 2, digits = 1, row.names = FALSE)
#> X1.10 <1 col hidden> stats..rnorm.10.
#> 1 - -1.3
#> 2 - 0.5
#> 3 - 1.2
#> 4 - -1.0
#>
#> <3 rows hidden>
#>
#> 8 - -0.7
#> 9 - -2.0
#> 10 - -0.5
print_data.frame(x, rows = 7, cols = 2, digits = 1, col.names = FALSE)
#> <1 col hidden>
#> 1 1 - -1.3
#> 2 2 - 0.5
#> 3 3 - 1.2
#> 4 4 - -1.0
#>
#> <3 rows hidden>
#>
#> 8 8 - -0.7
#> 9 9 - -2.0
#> 10 10 - -0.5
