rbind.numdfr: add 'numdfr' objects' rows together

Description Usage Arguments Value Author(s) See Also Examples

Description

Combines all of its parameters to one big numdfr object by setting all the rows below one another.

Usage

1
2
3
## S3 method for class 'numdfr'
rbind(..., ensure.unique.rownames=FALSE, separator=".",
	postfixcol=NULL, allowemptypostfix=TRUE, deparse.level = 1)

Arguments

...

several numdfr objects to combine.

ensure.unique.rownames

if TRUE and rownames are present, postfixToMakeUnique is called afterwards to ensure that these are unique.

separator, postfixcol, allowemptypostfix

see postfixToMakeUnique.

deparse.level

integer controlling the construction of labels in the case of non-matrix-like arguments. See rbind.data.frame.

Value

numdfr object

Author(s)

Nick Sabbe

See Also

NumDfr, rbind, rbind.data.frame

Examples

1
2
3
4
5
iris.nd<-numdfr(iris)[1:2,]
iris.nd2<-rbind(iris.nd, iris.nd, iris.nd)
rownames(iris.nd2)
iris.nd2<-rbind(iris.nd, iris.nd, iris.nd, ensure.unique.rownames=TRUE)
rownames(iris.nd2)

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