chisq_gl | R Documentation |
Calculates the MLE genotype and runs a chi-squared test assuming no double reduction and no preferential pairing.
chisq_gl(gl, g1, g2)
chisq_gl4(gl, g1, g2)
gl |
A matrix of offspring genotype log-likelihoods. The rows index the
individuals and the columns index the possible genotypes. So
|
g1 |
The first parent's genotype. |
g2 |
The second parent's genotype. |
A list containing the chi-squared statistic, degrees of freedom, and p-value.
chisq_gl4()
: Alias for chisq_gl, for backwards compatibility.
Mira Thakkar and David Gerard
## null sim
set.seed(1)
g1 <- 2
g2 <- 2
gl <- simf1gl(n = 25, g1 = g1, g2 = g2, alpha = 0, xi2 = 1/3)
chisq_gl(gl = gl, g1 = g1, g2 = g2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.