toPersonPeriod {TraMineRextras} | R Documentation |
Converting into person-period format.
Description
Converts the STS sequences of a state sequence object into person-period format.
Usage
toPersonPeriod(seqdata)
Arguments
seqdata |
A state sequence object as returned by |
Value
A data frame with three columns: id
, state
and timestamp
.
Author(s)
Matthias Studer
See Also
Examples
data(mvad)
mvad.labels <- c("employment", "further education", "higher education",
"joblessness", "school", "training")
mvad.scodes <- c("EM", "FE", "HE", "JL", "SC", "TR")
mvad.seq <- seqdef(mvad, 15:86, states = mvad.scodes, labels = mvad.labels)
mvad2 <- toPersonPeriod(mvad.seq[1:20,])
[Package TraMineRextras version 0.6.7 Index]