GoNoGo-Task: avg_rt for Go-Trials
in OpenSesame
Hi everyone,
I made a Go-NoGo Task and I need a feedback of average reactiontime only for the Go-Trials after each block.
Which ways are there to do so?
Thanks!
Comments
Hi vvogel, the easiest way is probably to select the go trials only after collecting the data. You can easily select cases with Excel's pivot tables, and plenty other tools in other programming languages.
If you need those response times for providing feedback in the experiment, then you would need to do some coding.
Let me know if you need help with that, then I give you some pointers.
Eduard
Thank you for your answer!
I actually want to provide feedback in the experiment and I am not sure about the coding. Maybe you could help me or give me an idea for the coding?
Thank you,
Verena
Hi Verena,
Before a block begins, you have to initialize some variables:
You probably have the variable
trial_type(or something similar) defined that has the valuesgoornogo. After they keyboard response item, you could add aninline_scriptto your trial sequence and put this code in the run phase:in the feedback item you can then use the variable
var.meanRT.Hope this helps,
Eduard