seqelength(TraMineR)
seqelength()所属R语言包:TraMineR
Lengths of event sequences
事件序列的长度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The length of an event sequence is its time span, i.e., the total time of observation. This information is useful to perform for instance a survival analysis. The function seqelength retrieves the lengths of the given sequences, while seqelength <- sets the length of the sequences.
一个事件序列的长度是其时间跨度,即,总的时间的观察。此信息是有用的执行,例如生存分析。的功能seqelength检索给定序列的长度,而seqelength <-设置的长度的序列。
seqesetlength is deprecated.
seqesetlength已经过时了。
用法----------Usage----------
seqelength(s)
seqelength(s) <- value
seqesetlength(s, len)
参数----------Arguments----------
参数:s
An event sequence object (seqelist).
事件序列对象(seqelist“)。
参数:len
A list of sequence lengths.
列表的序列长度。
参数:value
A list of sequence lengths.
列表的序列长度。
值----------Value----------
seqelength returns a numeric vector with the lengths of the sequences.
seqelength返回一个数值向量的序列的长度。
实例----------Examples----------
data(actcal.tse)
actcal.seqe <- seqecreate(actcal.tse)
## Since endEvent is not specified, contains no sequence lengths[#由于未指定endEvent,不包含任何序列长度]
## We set them manually as 12 for all sequences[#我们手动设置它们的所有序列为12]
sl <- numeric()
sl[1:2000] <- 12
seqelength(actcal.seqe) <- sl
actcal.seqe[1:10]
## Retrieve lengths[#获取长度]
seqelength(actcal.seqe)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|