humanize | R Documentation |
Humanize an R object
humanize(object, ...)
## S4 method for signature 'SummarizedExperiment'
humanize(object)
object |
Object. |
... |
Additional arguments. |
This can make dimnames invalid (see make.names()
) and
should only be called prior to writing files to disk.
Modified object. Contains human-friendly rownames (e.g. gene symbols instead of stable gene IDs) and colnames (e.g. sample names instead of sample IDs).
Updated 2021-10-21.
data(RangedSummarizedExperiment, package = "AcidTest")
## SummarizedExperiment ====
object <- RangedSummarizedExperiment
lapply(dimnames(object), head)
x <- humanize(object)
lapply(dimnames(x), head)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.