seqmeant(seqdata, weighted=TRUE, with.missing=FALSE, prop=FALSE, serr=FALSE)
seqdef
function.TRUE
, the weights (weights attribute) attached to the sequence object are used for computing weighted mean total time.TRUE
, cumulated durations are also computed for the missing status (gaps in the sequences). See seqdef on options for handling missing values when creating sequence objects.TRUE
, proportions of time spent in each state are returned instead of absolute values. This option is especially useful when sequences contain missing states, since the sum of the state durations may not be the same for all sequences.TRUE
, the variance and standard deviation of the total time spent in the states, as well as the standard error of the mean are also computed.print
and plot
methods for such objects.
plot.stslist.meant
for basic plots of stslist.meant objects and seqmtplot
(seqplot
with type="mt"
) argument for more sophisticated plots of the mean durations allowing grouping and legend.## Defining a sequence object with columns 13 to 24
## in the actcal example data set
data(actcal)
actcal.lab <- c("> 37 hours", "19-36 hours", "1-18 hours", "no work")
actcal.seq <- seqdef(actcal,13:24,labels=actcal.lab)
## Computing the mean time in the different states
seqmeant(actcal.seq)
## Mean times with their standard error
seqmeant(actcal.seq, serr=TRUE)
Run the code above in your browser using DataLab