stratum | R Documentation |
Methods to extract strata information from an object.
Here we only define a method for class "sts"
.
stratum(x, ...)
## S4 method for signature 'sts'
stratum(x, which = NULL, ...)
x |
an object of class |
... |
further arguments passed to methods. |
which |
an integer (strata dimension) or |
a character vector of strata names of length ncol(x)
.
stratum(sts)
: Extract the names of the units, i.e., the colnames
,
from a multivariate "sts"
object.
If the units result from the interaction of multiple strata
separated by dots, e.g., "region.group"
,
the function can also extract the names corresponding to a specific
strata dimension, e.g., which = 2
to get the group names.
noroBEall <- noroBE(by = "all", flatten = TRUE)
stratum(noroBEall) # just colnames(noroBEall)
stratum(noroBEall, which = 2) # the age groups
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.