Description Usage Format Details References
The dependent variable could be successful task performance. The condition means are exactly 0.2, 0.5, 0.2, and 0.8.
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: successful task performance (0 = no success versus 1 = success)
Subject index
The data were simulated using the following R-code:
set.seed(123)
N <- 50
d7 <- data.frame(A =factor(rep(c("A1","A1","A2","A2"), each=N)),
B =factor(rep(c("B1","B2","B1","B2"), each=N)),
pDV= rep(c( 0.2, 0.5, 0.2, 0.8), each=N))
tmp <- c(seq(0,1,length=N)[sample(N)], seq(0,1,length=N)[sample(N)],
seq(0,1,length=N)[sample(N)], seq(0,1,length=N)[sample(N)])
d7$pDV <- ifelse(d7$pDV > tmp, 1, 0)
d7$id <- 1:nrow(d7)
df_contrasts7 <- tibble(d7)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.