seqfpos(TraMineR)
seqfpos()所属R语言包:TraMineR
Search for the first occurrence of a given element in a sequence
搜索一个给定的元素序列中第一次出现的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns a vector containing the position of the first occurrence of the given element in each of the sequences in the data set.
返回一个向量,包含在每个数据组中的序列中的给定的元素的位置的第一次出现。
用法----------Usage----------
seqfpos(seqdata, state)
参数----------Arguments----------
参数:seqdata
a sequence object (see seqdef function).
序列的对象(参阅seqdef函数)。
参数:state
the state element to search in the sequences
国家要搜索的元素序列中
Details
详细信息----------Details----------
the state to search for has to be passed as a character string, and must be one of the state returned by the alphabet function. If the state is not contained in a sequence, NA is returned for this sequence.
国家搜索作为一个字符串传递和必须是alphabet函数返回的状态。如果该状态是不包含在一个序列中,NA返回此序列。
实例----------Examples----------
data(biofam)
biofam.seq <- seqdef(biofam,10:25)
## Searching for the first occurrence of state 1[#寻找第一次出现的状态1]
## in the biofam data set.[#在“biofam数据集。]
seqfpos(biofam.seq,"1")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|