search for: syll_congru

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

Did you mean: syll_incongru
2013 Apr 05
0
(no subject)
...comments are appreciated. > options(digits=2) > data <- read.delim("strooptaskdata2.txt", header=T) > data <- data[data$condition != "both_incongru",] > data <- data[data$condition != "syll_incongru",] > data <- data[data$condition != "syll_congru",] > data <- data[data$soa == "0",] > attach(data) > error <- numeric() > error[RT==RT] <- 0 > error[RT < 0] <- 1 > x<-length (RT); x [1] 2220 > RT[RT<0]<-NA > y<-sum(is.na(RT)); y [1] 9 > perc1<-y/x;perc1 [1] 0.0041 > &gt...