seqgen | R Documentation |
Generates random sequences.
seqgen(n, length, alphabet, p)
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. |
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.
a sequence object.
Alexis Gabadinho (with Gilbert Ritschard for the help page)
seq <- seqgen(1000,10,1:4,c(0.2,0.1,0.3,0.4))
seqstatd(seqdef(seq))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.