stroop2022.2.2.zip (28.7 KB)
Problem Core: I designed a basic Stroop in Psychopy2022.2.2(up).In this study, I use a coder to send signals to the collector (22 false responses would appear on the EEG monitor, 33 no responses would appear, 11 correct responses would appear) .
Some researchers told me that if the design was successful, a list of tags for reaction type will appear in the data csv file (11,22,33) . But in my current results(in “data” file), this phenomenon does not appear, is my design there is a problem or does not exist this phenomenon?
Can someone check it, thanks.
Hello @yufei_guo
Your response codes will be save to the EEG-data file but not to csv-file generated by PsychoPy. You could add the code to the csv-file by explicitly telling PsychoPy to save the codes
thisExp.addData("code: ", your_code_go_here)
However, if you have defined the correct answer in your condition file, e.g. $corrAns, have checked Store correct and defined the correct answer, e.g. $corrAns, in your response component, PsychoPy will add a column in which correct and incorrect answers will be recorded (1 = correct, 0 = incorrect).
Best wishes Jens
Thank you. I tried the second approach and it worked. You mean, the feedback Mark doesn’t appear in the CSV data file, but it does appear on the monitor. Thanks again.