seqdur(TraMineR)
seqdur()所属R语言包:TraMineR
Extract state durations from a sequence object.
提取状态的持续时间,从一个序列中的对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts states durations from a sequence object. Returns a matrix containing the states durations for the sequences. The states durations in 'D-D-D-D-A-A-A-A-A-A-A-D' are 4,7,1. Distinct states can be extracted with the seqdss function.
提取物的状态持续时间序列对象。返回矩阵的状态持续时间的序列。状态持续时间在'D-D-D-D-A-A-A-A-A-A-A-D'是4,7,1。与seqdss功能,可以提取不同的状态。
用法----------Usage----------
seqdur(seqdata, with.missing=FALSE)
参数----------Arguments----------
参数:seqdata
a sequence object as defined by the seqdef function.
一个序列对象的定义的seqdef功能。
参数:with.missing
if set to TRUE, durations are also computed for missing statuses (gaps in sequences). See seqdef on options for handling missing values when creating sequence objects.
如果设置为TRUE,持续时间也被计算为缺少的状态(序列中的差距)。请参阅seqdef选项处理缺失值,当创建序列对象。
值----------Value----------
a matrix containing the states durations for each distinct state in each sequence.
一个矩阵包含的状态持续时间每个序列中的每个不同的状态。
参见----------See Also----------
seqdss.
seqdss。
实例----------Examples----------
## Creating a sequence object with the columns 13 to 24[#创建一个序列对象列13至24]
## in the 'actcal' example data set[#在“actcal”示例数据集]
data(actcal)
actcal.seq <- seqdef(actcal,13:24)
## Retrieving the DSS[#检索DSS]
actcal.dur <- seqdur(actcal.seq)
## Displaying the durations for the first 10 sequences[#显示的第10个序列的持续时间]
actcal.dur[1:10,]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|