Description Usage Format Details References
The condition means are exactly 10, 20, 10, and 40; means and standard deviations are exactly the same as in 'df_contrasts3'.
1 |
A data frame with 12 rows and 3 variables:
Between subject factor with two levels (A1, A2)
Between subject factor with two levels (B1, B2)
Dependent variable
Subject index
The data were simulated using the following R-code:
set.seed(123)
d4 <- mvrnorm(n=5, mu=c(10, 20, 10, 40), Sigma=diag(4)*10^2, empirical=TRUE)
df_contrasts4 <- d4 mutate(id=1:nrow(.), B=factor(A), A=factor(A))
levels(df_contrasts4$A) <- c("A1","A1","A2","A2")
levels(df_contrasts4$B) <- c("B1","B2","B1","B2")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.