Extract the dimension names (samples, groups, contrast_names) from an
SEDesign object, similar to how dimnames() works on arrays or matrices.
Usage
## S7 method for class <SEDesign>
dimnames(x)Details
Returns a list with three named elements:
samples: Sample names (fromsamples(x))groups: Group names (fromgroups(x))contrasts: Contrast names (fromcontrast_names(x))
This provides a unified way to access all dimension names from a SEDesign
object, consistent with base R's dimnames() function for arrays and
matrices.
Examples
if (FALSE) {
dimnames(sedesign)
}