gencovtest()
tests genetic covariance components from a MANOVA model. Two different approaches can
be used: (I) a test statistic that takes into account the genetic and environmental effects and (II) a test
statistic that only considers the genetic information. The first type refers to tests based on the mean
cross-products ratio, whose distribution is obtained via Monte Carlo simulation of Wishart matrices. The
second way of testing genetic covariance refers to tests based upon an adaptation of Wilks' and Pillai's
statistics for evaluating independence of two sets of variables. All these tests are described by Silva (2015).
# S3 method for manova
gencovtest(obj, geneticFactor, gcov = NULL,
residualFactor = NULL, adjNrep = 1,
test = c("MCPR", "Wilks", "Pillai"),
nsim = 9999,
alternative = c("two.sided", "less", "greater"))
# S3 method for gencovtest
print(x, digits = 4, ...)
# S3 method for gencovtest
plot(x, var1, var2, ...)
an object of class "manova"
.
a character indicating the genetic factor from which to test covariance components. It must be declared as a factor in the manova object.
optional; a matrix containing estimates of genetic covariances to be tested. If
NULL
(default), an estimate is obtained via method of moments.
optional; a character indicating a source in the manova model to be used as
error term. If NULL
(default), the usual term "Residuals" will be used.
a correction index for dealing with unbalanced data. See details.
a character indicating the test. It must be on of the following:
"MCPR"
- the empirical type-I test based on Mean Cross-Products Ratios via Wishart simulation,
"Wilks"
- a type-II test based on the partial Wilks' Lambda,
"Pillai"
- a type-II test based on the partial Pillai's statistic.
the number of Monte Carlo simulations. Used only if test = "MCPR"
.
the type of alternative hypothesis. Used only if test = "MCPR"
. So far,
only the option "two.sided"
is implemented.
an object of class "gencovtest"
.
the number of digits to be displayed by the print method.
a character of integer indicating one of the two response variable or its position.
a character of integer indicating one of the two response variable or its position.
further arguments.
An object of class gencovtest
, a list of
a p-dimensional square matrix containing estimates of the genetic covariances.
a p-dimensional square matrix containing estimates of the genetic correlations.
the test (as input).
a p-dimensional square matrix containing the test
statistics.
If test = "MCPR"
the mean cross-products ratios are computed; if test = "Wilks"
the Wilks' Lambda is; and test = "Pillai"
results on Pillai's \(Tn\).
a p-dimensional square matrix containing the associated p-values.
the type of alternative hypothesis (as input).
a p-dimensional square matrix containing the Chi-square (D.f. = 1) approximation for Wilks's and Pillai's statistics. Stored only if one of these two tests is chosen.
an array consisting of nsim
p-dimensional matrices containing the simulated mean
cross-products ratios.
the number of degrees of freedom associated with the genetic factor.
the number of degrees of freedom associated with the residual term.
When using the MCPR test, be aware that dfg
should be equal or greater than the number of variables (p).
Otherwise the simulation of Wishart matrices may not be done.
A collinearity diagnosis is carried out using the condition number (CN), for the inferences may be affected by the quality of \(G\). Thus, if CN > 100, a warning message is displayed.
The genetic covariance matrix is currently estimated via method of moments, following the equation: $$G = (Mg - Me) / (nrep * adjNrep)$$ where \(Mg\) and \(Me\) are the matrices of mean cross-products associated with the genetic factor and the residuals, respectively; \(nrep\) is the number of replications, calculated as the ratio between the total number of observations and the number of levels of the genetic factor; \(adjNrep\) is supposed to adjust nrep, specially when estimating \(G\) from unbalanced data.
Silva, A.R. (2015) On Testing Genetic Covariance. LAP Lambert Academic Publishing. ISBN 3659716553
# NOT RUN {
# MANOVA
data(maize)
M <- manova(cbind(NKPR, ED, CD, PH) ~ family + env, data = maize)
summary(M)
# Example 1 - MCPR
t1 <- gencovtest(obj = M, geneticFactor = "family")
print(t1)
plot(t1, "ED", "PH")
# Example 2 - Pillai
t2 <- gencovtest(obj = M, geneticFactor = "family", test = "Pillai")
print(t2)
plot(t2, "ED", "PH")
# End (not run)
# }
Run the code above in your browser using DataLab