Prior to the steps below, enter the data as appropriate for the analyses (described elsewhere). As always, the following commands should be typed directly in the R console window.
Get the mean and standard deviation of the dependent variable for each of the levels. They are retain for use in the inferential statistics section below.
(MixedData) |> focus(Outcome1, Outcome2) |> describeMoments(by = Factor) -> MixedMoments
(MixedData) |> focus(Outcome1, Outcome2) |> describeCorrelations(by = Factor) -> MixedCorr
MixedMoments
MixedCorr
Get the analysis of variance source table.
(MixedMoments) |> describeFactorial(MixedCorr)
Test the main effects for statistical significance.
(MixedMoments) |> testFactorial(MixedCorr)
Get the proportion of variance accounted for by the effects.
(MixedMoments) |> estimateFactorial(MixedCorr)