Container Methods
# S4 method for TableContainer
dim(x)# S4 method for TableContainer
dimnames(x)
# S4 method for TableContainer
nrow(x)
# S4 method for TableContainer
ncol(x)
# S4 method for TableContainer
rownames(x)
# S4 method for TableContainer
rownames(x) <- value
# S4 method for TableContainer
colnames(x)
# S4 method for TableContainer
colnames(x) <- value
# S4 method for TableContainer
[(x, i, j, ..., drop = TRUE)
tblData(object)
tblData(object) <- value
rowData(object)
rowData(object) <- value
colData(object)
colData(object) <- value
metaData(object)
metaData(object) <- value
# S4 method for TableContainer
tblData(object)
# S4 method for TableContainer
tblData(object) <- value
# S4 method for TableContainer
rowData(object)
# S4 method for TableContainer
rowData(object) <- value
# S4 method for TableContainer
colData(object)
# S4 method for TableContainer
colData(object) <- value
# S4 method for TableContainer
metaData(object)
# S4 method for TableContainer
metaData(object) <- value
dim, dimnames, nrow, and ncol: the respective dimensions, dimnames, number of rows, and number of columns of the TableContainer object. When the table slot is NULL, the dimensions are derived from the rowData and colData slots.
[: A new TableContainer object with the selected data.
tblData, rowData, colData, and metadata: the respective slots of the TableContainer object.
tblData<-, rowData<-, colData<-, and metadata<-: update the respective slots and return the modified object.
A TableContainer object.
A matrix, data.frame, or NULL.
Row indices for subsetting. If only i is provided, it will return the entire row(s).
Column indices for subsetting.
Additional arguments.
Not used.
A TableContainer object.