Post by amber on Nov 4, 2019 19:09:42 GMT
Hi everyone,
I am creating a modified Eriksen Flanker task with congruent, incongruent, and neutral arrows. I wanted to have exactly 40 trials of each of the three conditions, so I separated each condition into a separate task list. Now, I am having trouble getting a meaningful data output and I think it is because I have set the meanings of the columns incorrectly. Here is a part of my code:
################# TABLES ######################
*column 1 = flanker name, column 2 = target name/type, column 3 = condition type, column 4 = keys
table congruent
"leftflank" "leftcong" 0 1
"rightflank" "rightcong" 0 2
table incongruent
"rightflank" "leftincong" 1 1
"leftflank" "rightincong" 1 2
table neutral
"neutflank" "leftneut" 2 1
"neutflank" "rightneut" 2 2
############## INCONGRUENT ####################
task incongruent
table incongruent
keys a l
font Large
show bitmap fix
delay 500
clear 1
show bitmap @1
delay 150
show bitmap @2
delay 350
readkey @4 800
clear 2 3
delay 500
save @2 @3 STATUS RT BLOCKNAME
############################################
The other 2 task lists are coded similarly for the other 2 conditions. How do I know which column has which variable? Is it based on the column number in the table? Does the order that I save each variable at the end of each task list effect it at all? I would like to know which column has reaction time (5?), status (4?), grouping variable(s), and block information.
Thanks!
Amber
I am creating a modified Eriksen Flanker task with congruent, incongruent, and neutral arrows. I wanted to have exactly 40 trials of each of the three conditions, so I separated each condition into a separate task list. Now, I am having trouble getting a meaningful data output and I think it is because I have set the meanings of the columns incorrectly. Here is a part of my code:
################# TABLES ######################
*column 1 = flanker name, column 2 = target name/type, column 3 = condition type, column 4 = keys
table congruent
"leftflank" "leftcong" 0 1
"rightflank" "rightcong" 0 2
table incongruent
"rightflank" "leftincong" 1 1
"leftflank" "rightincong" 1 2
table neutral
"neutflank" "leftneut" 2 1
"neutflank" "rightneut" 2 2
############## INCONGRUENT ####################
task incongruent
table incongruent
keys a l
font Large
show bitmap fix
delay 500
clear 1
show bitmap @1
delay 150
show bitmap @2
delay 350
readkey @4 800
clear 2 3
delay 500
save @2 @3 STATUS RT BLOCKNAME
############################################
The other 2 task lists are coded similarly for the other 2 conditions. How do I know which column has which variable? Is it based on the column number in the table? Does the order that I save each variable at the end of each task list effect it at all? I would like to know which column has reaction time (5?), status (4?), grouping variable(s), and block information.
Thanks!
Amber