seqdss(TraMineR)
seqdss()所属R语言包:TraMineR
Extract distinct states sequence from a sequence object
从序列对象中提取不同的状态序列
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract distinct states sequence from a sequence object.
提取不同的国家从一个序列对象序列。
用法----------Usage----------
seqdss(seqdata, with.missing=FALSE)
参数----------Arguments----------
参数:seqdata
a sequence object as defined by the seqdef function.
一个序列对象的定义的seqdef功能。
参数:with.missing
if set to TRUE, missing statuses (gaps in sequences) also appear in the DSS. See seqdef on options for handling missing values when creating sequence objects.
如果设置为TRUE,缺少的状态(序列中的差距)也出现在DSS。请参阅seqdef选项处理缺失值,当创建序列对象。
Details
详细信息----------Details----------
Returns a sequence object containing the distinct states sequences, ie the durations are not taken into account. The DSS contained in 'D-D-D-D-A-A-A-A-A-A-A-D' is 'D-A-D'. Associated durations can be extracted with the seqdur function.
返回一个序列对象,其中包含不同的状态序列的持续时间,即不考虑。 DSS包含在'D-D-D-D-A-A-A-A-A-A-A-D'是'D-A-D'。 seqdur功能,可以提取相关的持续时间。
If called with the {with.missing=TRUE} argument, a missing state in a sequence is considered as the occurrence of an additional symbol of the alphabet, and two or more consecutive missing states are considered as two or more occurrences of the same state. Hence the DSS of A-A-*-*-*-B-B-C-C-D is A-*-B-C-D.
与{with.missing=TRUE}参数,如果在一个序列中丢失的状态被认为是发生的其他符号的字母,和两个或更多的连续丢失的状态被视为出现两个或两个以上相同的状态。因此,DSSA-A-*-*-*-B-B-C-C-D是A-*-B-C-D。
值----------Value----------
a sequence object containing the distinct state sequence (DSS) for each sequence in the object given as argument.
序列,每个序列中的对象作为参数给定的对象,其中包含不同的状态序列(DSS)。
参见----------See Also----------
seqdur.
seqdur。
实例----------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.dss <- seqdss(actcal.seq)
## Displaying the DSS for the first 10 sequences[#显示DSS的第10个序列]
actcal.dss[1:10,]
## Example with with.missing argument[#示例with.missing参数的]
data(ex1)
ex1.seq <- seqdef(ex1, 1:13)
seqdss(ex1.seq)
seqdss(ex1.seq, with.missing=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|