str.numdfr: Display contents/structure of a 'numdfr' object

Description Usage Arguments Value Author(s) See Also Examples

Description

Display contents of a numdfr object

Usage

1
2
3
4
5
## S3 method for class 'numdfr'
str(object, short=TRUE, ...)
## S3 method for class 'numdfr'
print(x, ..., digits = NULL, quote = FALSE, right = TRUE,
    row.names = TRUE)

Arguments

object

numdfr object

short

if TRUE (the default), only max 10 rownames, colnames and factors are displayed

...

ignored for now for str. Passed on to printing the matrix in print

x

numdfr object

digits, quote, right, row.names

see print.data.frame: they are simply passed on

Value

str returns nothing (and invisibly so), print returns x invisibly.

Author(s)

Nick Sabbe

See Also

NumDfr, str, print, print.data.frame

Examples

1
2
3
4
iris.nd<-numdfr(iris)
str(iris.nd)
str(iris.nd, short=FALSE)
print(iris.nd[1:5,])

NumDfr documentation built on May 2, 2019, 5:50 p.m.