rbind.tableList {tableMatrix}R Documentation

Combine by rows

Description

tableList method, binds rows of tableList objects.

Usage

## 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


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)


[Package tableMatrix version 0.82.0 Index]