df_contrasts4: Simulated data with response times from a 2 x 2 between...

Description Usage Format Details References

Description

The condition means are exactly 10, 20, 10, and 40; means and standard deviations are exactly the same as in 'df_contrasts3'.

Usage

1

Format

A data frame with 12 rows and 3 variables:

A

Between subject factor with two levels (A1, A2)

B

Between subject factor with two levels (B1, B2)

DV

Dependent variable

id

Subject index

Details

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")

References

\insertAllCited
vasishth/lingpsych documentation built on Dec. 23, 2021, 2:11 p.m.