﻿<?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  » Stroop minlatency</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Sat, 12 Sep 2026 00:21:48 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Stroop minlatency</title><link>https://forums.millisecond.com/Topic11281.aspx</link><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;Thank you for all your help. I have decided to compute the SD at the end, using SPSS.&lt;/p&gt;
&lt;p&gt;Nicola&lt;/p&gt;</description><pubDate>Thu, 19 Sep 2013 19:36:37 GMT</pubDate><dc:creator>Nicola</dc:creator></item><item><title>RE: Stroop minlatency</title><link>https://forums.millisecond.com/Topic11253.aspx</link><description>&lt;p&gt;[quote]but I'm not sure about variance (and standard deviation). Do you have any further information regarding how the variance is calculated?[/quote]&lt;/p&gt;
&lt;p&gt;See e.g how SD is calculated in any of the IAT scripts.&lt;/p&gt;
&lt;p&gt;[quote]Or is it a sum of&amp;nbsp;diffferences from the mean at the time of that trial?[/quote]&lt;/p&gt;
&lt;p&gt;Well, it must be, regardless of how you calculate it (built-in function vs expression). The final mean isn't (and cannot be) known until the experiment is over and all data are in.&lt;/p&gt;</description><pubDate>Tue, 17 Sep 2013 03:56:58 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Stroop minlatency</title><link>https://forums.millisecond.com/Topic11251.aspx</link><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;Thank you for your reply. I only have two blocks - practice and test. So, I assume it's not an issue between the blocks. Plus, it seems that maxlatency is working but not minlatency. It seems that minlatency is updated (correctly or incorrectly) on the first 'blackincongruent' and 'blackcontrol' trials. I don't know what else it is doing the rest of the time (nor why it doesn't update on the first instances of red, green or blue). I have attached data from two attempts at the experiment. If you have time to have a look, that would be great!&lt;/p&gt;
&lt;p&gt;I may have to use values/expressions. I think I can do this for minlatency and maxlatency, but I'm not sure about variance (and standard deviation). Do you have any further information regarding how the variance is calculated? Is it taking the sum of squared differences between each trial latency and the final mean for the specified trials? Or is it a sum of&amp;nbsp;diffferences from the mean at the time of that trial? If the latter, it's probably not of use in this case anyway.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;</description><pubDate>Mon, 16 Sep 2013 20:06:11 GMT</pubDate><dc:creator>Nicola</dc:creator></item><item><title>RE: Stroop minlatency</title><link>https://forums.millisecond.com/Topic11243.aspx</link><description>&lt;p&gt;As far as I am aware (and according to the functions reference in the documentation):&lt;/p&gt;
&lt;p&gt;minlatency() = minimum response latency &lt;b&gt;in the current block&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;vs.&lt;/p&gt;
&lt;p&gt;totalminlatency() = minimum response latency (i.e. across all blocks)&lt;/p&gt;
&lt;p&gt;Same for maxlatency vs. totalmaxlatency, meanlatency vs. totalmeanlatency etc.&lt;/p&gt;
&lt;p&gt;Other than that, there's not much I could say just by staring at the few lines you posted / without any actual data. If you want full control over metrics and do not want to rely on built-in functions, I would recommend you implement min and max as needed by using values and expressions.&lt;/p&gt;</description><pubDate>Mon, 16 Sep 2013 06:16:27 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>Stroop minlatency</title><link>https://forums.millisecond.com/Topic11242.aspx</link><description>&lt;p&gt;Hello all,&lt;/p&gt;
&lt;p&gt;I'm trying to modify the stroop script so that I can easily identify outliers. So, I've introduced a minimum latency and maximum latency variable for both incongruent and control trials. As far as I can see, the maximum latency is working fine. The minimum latency, however, does not update correctly after each trial. Sometimes it updates with a latency that is larger and sometimes it doesn't update when there is a smaller latency. Any thoughts on this? Is there more to the minlatency function that I'm not aware of?&lt;/p&gt;
&lt;p&gt;Also, would this be affecting my variance/SD function? I've included these so that Inquisit will alert me when there are latencies &amp;lt; 300ms or &amp;gt; mean + 3SD.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;

&lt;p&gt;&amp;lt;expressions&amp;gt;&lt;br /&gt;...&lt;br /&gt;/ minincongruentlatency = minlatency(trial.blueincongruent, trial.redincongruent, trial.greenincongruent, trial.blackincongruent)&lt;br /&gt;/ maxincongruentlatency = maxlatency(trial.blueincongruent, trial.redincongruent, trial.greenincongruent, trial.blackincongruent)&lt;br /&gt;/ varincongruentlatency = varlatency(trial.blueincongruent, trial.redincongruent, trial.greenincongruent, trial.blackincongruent)&lt;br /&gt;/ sdincongruentlatency = sqrt(expressions.varincongruentlatency)&lt;br /&gt;/ cutoffincongruentlatency = expressions.incongruentlatency+(3*expressions.sdincongruentlatency)/ mincontrollatency = minlatency(trial.bluecontrol, trial.redcontrol, trial.greencontrol, trial.blackcontrol)&lt;br /&gt;/ maxcontrollatency = maxlatency(trial.bluecontrol, trial.redcontrol, trial.greencontrol, trial.blackcontrol)&lt;br /&gt;/ varcontrollatency = varlatency(trial.bluecontrol, trial.redcontrol, trial.greencontrol, trial.blackcontrol)&lt;br /&gt;/ sdcontrollatency = sqrt(expressions.varcontrollatency)&lt;br /&gt;/ cutoffcontrollatency = expressions.controllatency+(3*expressions.sdcontrollatency)&lt;br /&gt;...&lt;br /&gt;&amp;lt;/expressions&amp;gt;&lt;/p&gt;</description><pubDate>Sun, 15 Sep 2013 22:52:38 GMT</pubDate><dc:creator>Nicola</dc:creator></item></channel></rss>