﻿<?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 3  » Likert scale anchors</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 02 Jul 2026 10:28:46 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic8760.aspx</link><description>&lt;p&gt;I still have an issue when I use this script:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&amp;lt;likert dreamq&amp;gt;&lt;/p&gt;
&lt;p&gt;/anchors = [0= "no recall"; 1= "not at all";5= "moderate"; 9= "extremely"]&lt;/p&gt;
&lt;p&gt;/stimulusframes = [1=dreamq]&lt;/p&gt;
&lt;p&gt;/mouse = false&lt;/p&gt;
&lt;p&gt;/fontstyle = ("Arial", 1.7%)&lt;/p&gt;
&lt;p&gt;/numpoints = 10&lt;/p&gt;
&lt;p&gt;/position = (50,60)&lt;/p&gt;
&lt;p&gt;/pretrialpause = 500&lt;/p&gt;
&lt;p&gt;&amp;lt;/likert&amp;gt;&lt;/p&gt;
&lt;/p&gt;

&lt;p&gt;it says 'anchors: a quote, number, or label is missing'&lt;/p&gt;
&lt;p&gt;but works fine if I take out the "0=no recall"&lt;/p&gt;
</description><pubDate>Thu, 27 Sep 2012 12:52:06 GMT</pubDate><dc:creator>mcarr4</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic8759.aspx</link><description>&lt;p&gt;Yes, this is fixed in the beta refresh (4.0.0.1).&lt;/p&gt;
&lt;p&gt;-Sean&lt;/p&gt;</description><pubDate>Wed, 26 Sep 2012 21:02:39 GMT</pubDate><dc:creator>seandr</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic8758.aspx</link><description>&lt;p&gt;Has this issue been resolved?&lt;/p&gt;

&lt;p&gt;Thanks :)&lt;/p&gt;</description><pubDate>Wed, 26 Sep 2012 19:06:50 GMT</pubDate><dc:creator>mcarr4</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3639.aspx</link><description>&lt;p&gt;No need to email, I've noted this issue.&lt;/p&gt;
&lt;p&gt;-Sean&lt;/p&gt;</description><pubDate>Wed, 09 Dec 2009 10:04:43 GMT</pubDate><dc:creator>seandr</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3636.aspx</link><description>&lt;p&gt;[quote]So much for using the mysterious zero in the likert anchors[/quote]&lt;/p&gt;
&lt;p&gt;If this really bugs you, I recommend emailing support via support &amp;lt;at&amp;gt; millisecond.com. In any case, good you're up and running for now!&lt;/p&gt;
&lt;p&gt;~Dave&lt;/p&gt;</description><pubDate>Wed, 09 Dec 2009 09:11:12 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3630.aspx</link><description>&lt;p&gt;Thanks! I went ahead and switched to mouse input, and now it seems to be working fine. So much for using the mysterious zero in the likert anchors :)&lt;/p&gt;</description><pubDate>Tue, 08 Dec 2009 16:20:58 GMT</pubDate><dc:creator>StudyGuy</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3627.aspx</link><description>&lt;p&gt;In this case, I would either switch to mouse input or build a 'custom' likert scale using the standard &amp;lt;trial&amp;gt; element. See the sample script available here: &lt;a href="/download/samples/v2/CustomLikert/customlikert.zip"&gt;http://www.millisecond.com/download/samples/v2/CustomLikert/customlikert.zip&lt;/a&gt;. With the latter approach, I'd set '/ inputdevice = keyboard' and '/ validresponse = ("0", "1", "2", "3", "4")'. As you will notice, the data file will still not show the numerical values you want (0-4), but the respective keyboard scan codes (see &lt;a href="/support/docs/v3/html/language/scancodes.htm"&gt;http://www.millisecond.com/support/docs/v3/html/language/scancodes.htm&lt;/a&gt;). To remedy this problem, I would define a custom variable (&amp;lt;values&amp;gt; entry) and convert the scan codes to their respective numerical values via a few '/ ontrialend' attributes and log the variable in the data file (see &amp;lt;data&amp;gt; element). In sum:&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;values&amp;gt;&lt;br /&gt;/ likertresponse = ""&lt;br /&gt;[...]&lt;br /&gt;&amp;lt;/values&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;trial customlikert&amp;gt;&lt;br /&gt;[...]&lt;br /&gt;/ inputdevice = keyboard&lt;br /&gt;/ validresponse = ("0", "1", "2", "3", "4")&lt;br /&gt;/ ontrialend = [if(trial.customlikert.response == 11) values.likertresponse = 0]&lt;br /&gt;/ ontrialend = [if(trial.customlikert.response == 2) values.likertresponse = 1]&lt;br /&gt;/ ontrialend = [if(trial.customlikert.response == 3) values.likertresponse = 2]&lt;br /&gt;/ ontrialend = [if(trial.customlikert.response == 4) values.likertresponse = 3]&lt;br /&gt;/ ontrialend = [if(trial.customlikert.response == 5) values.likertresponse = 4]&lt;br /&gt;&amp;lt;/trial&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;data&amp;gt;&lt;br /&gt;/ columns = [..., values.likertresponse, ...]&lt;br /&gt;[...]&lt;br /&gt;&amp;lt;/data&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Best wishes from a fellow Inquisit user,&lt;/p&gt;
&lt;p&gt;~Dave&lt;/p&gt;</description><pubDate>Tue, 08 Dec 2009 02:31:24 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3626.aspx</link><description>&lt;p&gt;I tried that, and the formatting works on the screen. However, the numerical keyboard does not indicate the correct values for responses. For example, when I want to enter a response of "0", I must press the "1" key, or when I want to enter a response of "1" I have to press the "2" key on the keyboard. Is there any way I can change the keyboard values?&lt;/p&gt;</description><pubDate>Mon, 07 Dec 2009 19:50:37 GMT</pubDate><dc:creator>StudyGuy</dc:creator></item><item><title>RE: Likert scale anchors</title><link>https://forums.millisecond.com/Topic3617.aspx</link><description>&lt;p&gt;Can't you just set it up like this?&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;likert pfq&amp;gt;&lt;br /&gt;/ anchors = [1="Never"; 2="Rarely"; 3="Sometimes"; 4="Frequently"; 5="Continuously or almost continuously"]&lt;br /&gt;&lt;b&gt;/ buttonvalues = [1="0"; 2="1"; 3="2"; 4="3"; 5="4"]&lt;/b&gt;&lt;br /&gt;/ stimulusframes = [1 = pfq]&lt;br /&gt;/ mouse = false&lt;br /&gt;/ numpoints = 5&lt;br /&gt;/ position= (50, 80)&lt;br /&gt;&amp;lt;/likert&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;~Dave&lt;/p&gt;</description><pubDate>Mon, 07 Dec 2009 09:56:56 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>Likert scale anchors</title><link>https://forums.millisecond.com/Topic3616.aspx</link><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I want to have a likert scale that goes from 0 to 4, and I need to keep the scale numbers that way because there is a scoring protocol based on those numbers that I will need to do with the data. However, whenever I include the zero point in the scale, I try to run the sequence and it says "/ anchors: a quote, number or label is missing." I'm not sure why this is happening, since Help states that you can include a zero point in a likert scale. Here's what I have so far:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: xx-small;"&gt;
&lt;p&gt;&amp;lt;likert pfq&amp;gt;&lt;/p&gt;
&lt;p&gt;/ anchors = [0="Never"; 1="Rarely"; 2="Sometimes"; 3="Frequently"; 4="Continuously or almost continuously"]&lt;/p&gt;
&lt;p&gt;/ stimulusframes = [1 = pfq]&lt;/p&gt;
&lt;p&gt;/ mouse=false&lt;/p&gt;
&lt;p&gt;/ numpoints=5&lt;/p&gt;
&lt;p&gt;/ position= (50, 80)&lt;/p&gt;
&lt;p&gt;&amp;lt;/likert&amp;gt;&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;</description><pubDate>Mon, 07 Dec 2009 09:45:01 GMT</pubDate><dc:creator>StudyGuy</dc:creator></item></channel></rss>