search for: both_congru

Displaying 1 result from an estimated 1 matches for "both_congru".

Did you mean: both_incongru
2013 Apr 05
0
(no subject)
...] 2220 > RT[RT<0]<-NA > y<-sum(is.na(RT)); y [1] 9 > perc1<-y/x;perc1 [1] 0.0041 > > RT[RT<200]<-NA > RT[RT>2000]<-NA > z<-sum(is.na(RT));z [1] 29 > perc2<-z/x;perc2 [1] 0.013 > > congruity <- numeric() > congruity[condition=="both_congru"] <- "congru" > congruity[condition=="neutral"] <- "neutral" > congruity <- as.factor(congruity) > tapply(error*100, congruity, mean, na.rm=T) congru neutral 0.00 0.51 > aov1 <- lmer(error ~ 1 + (1 | subj) + (1 | color), family=&quo...