showAttributes {DGEobj} | R Documentation |
Print attributes
Description
This function prints all attributes regardless of the class of the attribute value.
Usage
showAttributes(
dgeObj,
skipList = c("dim", "dimnames", "rownames", "colnames", "listData", "objDef")
)
Arguments
dgeObj |
A DGEobj |
skipList |
A character vector of attributes to skip. Use this to avoid printing certain lengthy attributes like rownames. Defaults to c("dim", "dimnames", "rownames", "colnames", "listData", "objDef") |
Details
*Note* Use showMeta() to only retrieve attributes that are key/value pairs.
Examples
# example DGEobj
exObj <- readRDS(system.file("miniObj.RDS", package = "DGEobj"))
showAttributes(exObj)
[Package DGEobj version 1.1.2 Index]