Description Usage Format Details References
The condition means are exactly 10, 20, 10, and 40. It could be assumed that the four factor levels 'F1' to 'F4' reflect levels of word frequency, including the levels 'low', 'medium-low', 'medium-high', and 'high' frequency words, and that the dependent variable (DV) reflects some response time.
1 |
A data frame with 12 rows and 3 variables:
Between subject factor with factor four levels (F1, F2, F3, F4)
Dependent variable
Subject index
The data were simulated using the following R-code:
set.seed(123)
d3 <- mvrnorm(n=5, mu=c(10, 20, 10, 40), Sigma=diag(4)*10^2, empirical=TRUE)
df_contrasts3 <- d3 mutate(id=1:nrow(.), F=factor(F))
levels(df_contrasts3$F) <- c("F1", "F2", "F3", "F4")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.