View source: R/multiplemeans.R
| MultipleMeans | R Documentation |
MultipleMeansCompares means of multiple outcomes on a categorical predictor.
MultipleMeans(
outcomes,
predictor,
subset = NULL,
weights = NULL,
correction = "Table FDR",
robust.se = FALSE,
missing = "Exclude cases with missing data",
show.labels = FALSE,
seed = 1223,
p.cutoff = 0.05,
title = "",
subtitle = "",
footer = "",
return.data.frame = FALSE
)
outcomes |
The outcome variables. |
predictor |
The factor representing the groups. |
subset |
An optional vector specifying a subset of observations to be
used in the fitting process, or, the name of a variable in |
weights |
An optional vector of sampling weights, or, the name or, the
name of a variable in |
correction |
The multiple comparison adjustment method: |
robust.se |
Computes standard errors that are robust to violations of the assumption of constant variance. This parameter is ignored if weights are applied (as weights already employ a sandwich estimator). |
missing |
How missing data is to be treated in the ANOVA. Options:
|
show.labels |
Shows the variable labels, as opposed to the labels, in the outputs, where a variables label is an attribute (e.g., attr(foo, "label")). |
seed |
The random number seed used when evaluating the multivariate t-distribution. |
p.cutoff |
The alpha level to be used in testing. |
title |
The title to appear in the output. |
subtitle |
The footer to appear in the output. |
footer |
The footer to appear in the output. |
return.data.frame |
Whether to return a data frame instead of a formattable widget. |
Computes multiple ANOVAs.
Conducts multiple OneWayANOVAs, and puts them in a list. If correction is
"Table FDR", the false discovery rate correction is applied across the entire table. All
other corrections are performed within rows. Additional detail about the other parameters can be found in OneWayANOVA.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.