rbind.tableList: Combine by rows

Description Usage Arguments Value Examples

Description

tableList method, binds rows of tableList objects.

Usage

1
2
## S3 method for class 'tableList'
rbind(..., use.names = TRUE, fill = FALSE)

Arguments

...

tableList objects.

use.names

Passed to rbind.data.table.

fill

Passed to rbind.data.table.

Value

tableList object.

Examples

1
2
3
4
5
6
7
8
9
data(images8By8)
data(images10By10)

# Create tableList objects from images8By8[,1:3] and images10By10[,1:3]
TL1 <- tableList(images8By8[,1:3])
TL2 <- tableList(images10By10[,1:3])

# Bindind rows of two tableList objects
rbind(TL1, TL2)

InferenceTechnologies/tableMatrix documentation built on May 8, 2019, 1:39 p.m.