showAttributes: 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
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
Run this code# NOT RUN {
# example DGEobj
exObj <- readRDS(system.file("miniObj.RDS", package = "DGEobj"))
showAttributes(exObj)
# }
Run the code above in your browser using DataLab