Description Usage Format Details References
The simulated data contains data from word classes "nouns", "verbs", and "adjectives". Word class is manipulated between subjects here (usually it is a within-subject manipulation). The condition means are exactly 500, 450, and 400 milliseconds for nouns, verbs, and adjectives words.
1 |
A data frame with 12 rows and 3 variables:
Between subject factor word class with factor levels "nouns", "verbs", and "adjectives"
Dependent variable, response time in milliseconds
Subject index
The data were simulated using the following R-code:
set.seed(123)
d2 <- mvrnorm(n=4, mu=c(500, 450, 400), Sigma=diag(3)*20^2, empirical=TRUE)
df_contrasts2 <- d2 gather(key="F", value="DV") mutate(id=1:nrow(.), F=factor(F))
levels(df_contrasts2$F) <- c("nouns", "verbs", "adjectives")
df_contrasts2$DV <- round(df_contrasts2$DV)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.