seqtabstocc {TraMineRextras} | R Documentation |
Computes the frequencies of co-occurring state patterns.
seqtabstocc(seqdata, ...)
seqdata |
A state sequence ( |
... |
Additional arguments to be passed to |
The function extracts the list of states co-occurring in each sequence. For each sequence, the co-occurring states are extracted as the sequence of the alphabetically sorted distinct states. The frequencies of the extracted sets of states is then obtained by means of the TraMineR seqtab
function.
A stslist.freq
object.
Gilbert Ritschard
## Creating a sequence object from the first 500 actcal data. data(actcal) actcal.seq <- seqdef(actcal[1:500,13:24]) ## 10 most frequent state patterns in the data seqtabstocc(actcal.seq) ## All state patterns seqtabstocc(actcal.seq, idxs=0)