seqgen(TraMineR)
seqgen()所属R语言包:TraMineR
Random sequences generation
随机序列生成
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates random sequences.
生成的随机序列。
用法----------Usage----------
seqgen(n, length, alphabet, p)
参数----------Arguments----------
参数:n
number of sequences to generate
要生成的序列数
参数:length
sequences length
序列长度
参数:alphabet
the alphabet from which the sequences are generated
从该序列产生的字母表
参数:p
an optional vector of probabilities for the states in the alphabet. Must be of the same length as the alphabet. If not specified, equal probabilities are used.
一个可选的向量,概率在字母表中的状态。字母表中必须是相同的长度。如果没有指定,使用相等的概率。
Details
详细信息----------Details----------
Each sequence is generated by choosing a set of random numbers (with min=1 and max=length of the alphabet) using the runif function. When the probability distribution is not specified, the uniform probability distribution giving same probability to each state is used to generate the sequences.
每个序列生成,通过选择使用的runif函数的一组随机数(分钟= 1和max =长度中的字母)。当未指定的概率分布,用于给每个状态相同的概率的概率分布均匀来生成的序列。
值----------Value----------
a sequence object.
一个序列对象。
实例----------Examples----------
seq <- seqgen(1000,10,1:4,c(0.2,0.1,0.3,0.4))
seqstatd(seqdef(seq))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|