Last chance! 50% off unlimited learning
Sale ends in
plot()
function.The conf.reg() function calculates confidence regions for contrasts in multivariate factorial designs.
In the two-dimensional case, confidence ellipsoids can be plotted via the generic plot()
function.
conf.reg(object, nullhypo)
A MANOVA
object.
In scenarios with more than one factor, the null hypothesis, i.e., the contrast of interest must be specified.
A confreg
object containing the following components:
The center of the confidence ellipsoid.
The scaling factors for the axis of the confidence ellipsoid calculated as
The corresponding eigenvectors, which determine the axes of the ellipsoid.
Friedrich, S., and Pauly, M. (2018). MATS: Inference for potentially singular and heteroscedastic MANOVA. Journal of Multivariate Analysis, 165, 166-179.
# NOT RUN {
data(EEG)
EEG_mod <- MANOVA(resp ~ sex * diagnosis,
data = EEG, subject = "id", resampling = "paramBS",
alpha = 0.05, iter = 100, CPU = 1)
conf.reg(EEG_mod, nullhypo = "sex")
# }
Run the code above in your browser using DataLab