proFreq {parsec} | R Documentation |
Observed profile frequencies
Description
The function computes profile frequencies, by counting the number of times a profile appears in the population.
Usage
proFreq(profiles, population)
Arguments
profiles |
an object of S3 class |
population |
a |
Value
An object of class wprof
with the same profiles of the argument but with different frequencies.
Author(s)
Alberto Arcagni
See Also
Examples
vl <- c(2, 3, 2)
prf <- var2prof(varlen = vl)
pop <- matrix(c(2, 1, 1, 1, 2, 1, 2, 3, 1), 3, 3)
rownames(pop) <- LETTERS[1:3]
proFreq(profiles = prf, population = pop)
[Package parsec version 1.2.7 Index]