﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 4  » providing reaction time feedback to respondents</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Tue, 07 Jul 2026 00:49:52 GMT</lastBuildDate><ttl>20</ttl><item><title>providing reaction time feedback to respondents</title><link>https://forums.millisecond.com/Topic15743.aspx</link><description>Hi,&lt;br/&gt;&lt;br/&gt;I want to make my study more like a game to make respondents more motivated to react to stimuli quickly and accurately.&amp;nbsp;&lt;br/&gt;I was wondering if it's possible to do this after every trial, or at the end of the experiment where i can provide customised feedback about respondents' 'reflexive ability level' or something (e.g. if their mean RT is lower than XXX, then they get 35 points etc).&lt;br/&gt;&lt;br/&gt;Thanks,&lt;br/&gt;&lt;br/&gt;Cathryn</description><pubDate>Wed, 11 Mar 2015 04:59:40 GMT</pubDate><dc:creator>cathryn.rebak</dc:creator></item><item><title>RE: providing reaction time feedback to respondents</title><link>https://forums.millisecond.com/Topic15744.aspx</link><description>Yes, you can do that. Inquisit has a number of built-in properties (meanlatency, etc.) which you can report. You can also calculate anything that's not built-in yourself using &amp;lt;values&amp;gt; and &amp;lt;expressions&amp;gt;. Those properties, values, etc. can be reported back to participants in any way you like. A simple example:&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ points = 0&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-10 = mytrial; 11 = feedback]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ pretrialpause = 500&lt;br/&gt;/ stimulusframes = [1=mytext]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial feedback&amp;gt;&lt;br/&gt;/ ontrialbegin = [if (trial.mytrial.meanlatency &amp;lt;= 300) values.points = 35]&lt;br/&gt;/ ontrialbegin = [if (trial.mytrial.meanlatency &amp;gt; 300) values.points = 20]&lt;br/&gt;/ ontrialbegin = [if (trial.mytrial.meanlatency &amp;gt; 600) values.points = 5]&lt;br/&gt;/ stimulusframes = [1=feedbacktext]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text mytext&amp;gt;&lt;br/&gt;/ items = ("Press the spacebar as quickly as possible.")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text feedbacktext&amp;gt;&lt;br/&gt;/ items = ("Your mean response time was &amp;lt;%trial.mytrial.meanlatency%&amp;gt; milliseconds. You win &amp;lt;%values.points%&amp;gt; points.")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;For more elaborate examples, you can check out the scripts available in the Test Library, virtually all of which provide some sort of feedback.&lt;br/&gt;</description><pubDate>Wed, 11 Mar 2015 04:59:40 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>