Stroop Voice Recording Task


Author
Message
Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1

Sir, I have one more question on the script above. If I would like to replace "relatedwords" with "relatedpictures" and "unrelatedwords" with "unrelatedpictures". In other words, I wish to use word-picture pairs basically. Could you enlighten me about adding pictures to the script?


Thank you very much in advance.


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K

You need to define <picture> elements. See the documentation for the <picture> element and work through the "Standard Picture IAT" tutorial.


Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1

Hi, I have prime-target pairs such as CAR/MOTORE in the first set of items including 30 pairs. In the second set of items I have 30 pairs like CAR/MAGLIONE. I have also another two different prime-target pairs in the same experiment which will synchronously be appeared on the screen  together as pairs. Is that below the right way of creating the experiment script? If not, could you just jot down a sample to enlighten me please?


<text relatedwords>
/ items = ("CAR", "MOTORE", there will be 30 pairs)
/ select = noreplace
</text>

<text unrelatedwords>
/ items = ("CAR", "MAGLIONE" there will be 30 pairs)
/ select = text.firstname.currentindex
</text>

<text relatedwords1>
/ items = ("CAR", "VEICOLO" there will be 30 pairs)
/ select = noreplace
</text>

<text unrelatedwords1>
/ items = ("CAR", "VERDURA" there will be 30 pairs)
/ select = text.firstname.currentindex
</text>


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K

See the "How to Present Stimulus Pairs" topic in the Inquisit documentation for examples and details.


The code you posted will not work and does not make sense. There is no element called 'firstname' to define a dependency on.


Moreover, the constituent items forming your pairs need to be in different elements, not in one and the same.


Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1

"How to Present Stimulus Pairs" topic is not enough clear for me to create the proper script for my experiment. In the first set of pairs, CAR given with MOTORE is just one of 30 word pairs under the related word items. In the same experiment for the second, third, and fourth set of pairs, do you mean that the word "CAR" is not possible to use ?


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K

No. Here's a simple example based on the documentation topic I mentioned. There are two pairs of related words, 'car - motor' and 'house - room'. You need to extend that (a) to more items (which is trivial) and (b) introduce further <text> and <trial> elements for your unrelated pairs.


<text related1>
/ items = ("Car", "House")
/ select = noreplace
/ position = (50%, 48%)
</text>

<text related2>
/ items = ("Motor", "Room")
/ select = text.related1.currentindex
/ position = (50%, 52%)
</text>

<trial relatedtrial>
/ stimulustimes = [0 = related1, related2]
/ validresponse = (57)
</trial>

<block myblock>
/trials = [1-2 = relatedtrial]
</block>


Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1

Dave, thank you for interest. Actually, I have just discovered SemanticPriming script in the library,
which will hopefully also help me in recoding the script for my experiment.


Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1

When I run the script, there appears random words from different item parts. What I was unable to do is to make first word in the targetwords1 and the first word in transwords1 display on the screen. I am in need of your efforts. In fact, I tried to recode the script as below :


---------------------------------------------------------------------------------------
*** DEFAULTS ***
---------------------------------------------------------------------------------------           

<defaults>
/ screencolor = (255,255,255)
/ font = ("Arial", -18, 400, 0, 34)
/ txbgcolor = (0, 0, 0)
/ txcolor = (0,0,0)
/ inputdevice = voicerecord
</defaults>

<data>
/ columns = [date time subject trialcode blockcode blocknum trialnum trialdata trialdata latency response]
</data>

------------------------------------------------------------------------------------
*** TEXTS AND TARGETS ***
------------------------------------------------------------------------------------

<text targetword>
/ select = noreplace
/ position = (5,50)
/ items = targetword
/ font = ("Arial", -20, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item targetword>
/1 = "targetword"
</item>

<text transword>
/ select = noreplace
/ position = (93,50)
/ items = transword
/ font = ("Arial", -20, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item transword>
/1 = "transword"
</item>


<text targetwords1>
/ select = noreplace
/ erase = true(0,0,0)
/ position = (50,50)
/ items = targetwords1
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item targetwords1>
 / 1 = "car"
 / 2 = "bike"
 / 3 = "plane"
 / 4 = "onion"
 / 5 = "carrot"
 / 6 = "lettuce"
 / 7 = "couch"
 / 8 = "closet"
 / 9 = "chair"
 / 10 = "grape"
 / 11 = "lemon"
 / 12 = "cherry"
 / 13 = "dress"
 / 14 = "trousers"
 / 15 = "coat"
 / 16 = "yellow"
 / 17 = "black"
 / 18 = "purple"
 / 19 = "horse"
 / 20 = "lion"
 / 21 = "pig"
 / 22 = "lawyer"
 / 23 = "teacher"
 / 24 = "dentist"
 / 25 = "eye"
 / 26 = "chest"
 / 27 = "face"
 / 28 = "church"
 / 29 = "factory"
 / 30 = "farm"
</item>

<text transwords1>
/ select = linked(targetwords1)
/ erase = true(0,0,0)
/ position = (50,50)
/ items = transwords1
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item transwords1>
 / 1 = "motore"
 / 2 = "treno"
 / 3 = "barca"
 / 4 = "pomodoro"
 / 5 = "fagiolo"
 / 6 = "pisello"
 / 7 = "tavolo"
 / 8 = "scaffale"
 / 9 = "letto"
 / 10 = "pesca"
 / 11 = "banana"
 / 12 = "mela"
 / 13 = "maglione"
 / 14 = "camicia"
 / 15 = "calzino"
 / 16 = "rosso"
 / 17 = "verde"
 / 18 = "blu"
 / 19 = "gatto"
 / 20 = "coniglio"
 / 21 = "cane"
 / 22 = "medico"
 / 23 = "panettiere"
 / 24 = "macellaio"
 / 25 = "gamba"
 / 26 = "caviglia"
 / 27 = "braccio"
 / 28 = "appartamento"
 / 29 = "museo"
 / 30 = "casa"
</item>

<text targetwords2>
/ select = noreplace
/ erase = true(0,0,0)
/ position = (50,50)
/ items = targetwords2
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item targetwords2>
 / 1 = "car"
 / 2 = "bike"
 / 3 = "plane"
 / 4 = "onion"
 / 5 = "carrot"
 / 6 = "lettuce"
 / 7 = "couch"
 / 8 = "closet"
 / 9 = "chair"
 / 10 = "grape"
 / 11 = "lemon"
 / 12 = "cherry"
 / 13 = "dress"
 / 14 = "trousers"
 / 15 = "coat"
 / 16 = "yellow"
 / 17 = "black"
 / 18 = "purple"
 / 19 = "horse"
 / 20 = "lion"
 / 21 = "pig"
 / 22 = "lawyer"
 / 23 = "teacher"
 / 24 = "dentist"
 / 25 = "eye"
 / 26 = "chest"
 / 27 = "face"
 / 28 = "church"
 / 29 = "factory"
 / 30 = "farm"
</item>

<text transwords2>
/ select = linked(targetwords2)
/ erase = true(0,0,0)
/ position = (50,50)
/ items = transwords2
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item transwords2>
/ 1 =  "maglione"
/ 2 =  "pesca"
/ 3 =  "tavolo"
/ 4 =  "camicia"
/ 5 =  "calzino"
/ 6 =  "gamba"
/ 7 =  "cane"
/ 8 =  "banana"
/ 9 =  "rosso"
/ 10 = "casa"
/ 11 = "braccio"
/ 12 = "blu"
/ 13 = "pisello"
/ 14 = "medico"
/ 15 = "appartamento"
/ 16 = "coniglio"
/ 17 = "scaffale"
/ 18 = "fagiolo"
/ 19 = "museo"
/ 20 = "caviglia"
/ 21 = "letto"
/ 22 = "mela"
/ 23 = "verde"
/ 24 = "barca"
/ 25 = "gatto"
/ 26 = "motore"
/ 27 = "macellanio"
/ 28 = "panettiere"
/ 29 = "podomoro"
/ 30 = "treno"
</item>

<text target>
/ items = target
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (0, 0, 0)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>

<item target>
/1 = ""
</item>

<shape erase>
/ color= (255,255,255)
/ size = (400,400)
</shape>

------------------------------------------------------------------------------------
*** INSTRUCTION PAGES ***
------------------------------------------------------------------------------------

<instruct>
/ nextkey = (" ")
/ lastlabel = "Press the spacebar to continue"
/ nextlabel = "Press the spacebar to continue"
/ font = ("Arial", -18, 400, 0, 34)
/ screencolor = (255,255,255)
/ txcolor = (0,0,0)
</instruct>

<page welcome>
^^^^
                   Lexical Decision Experiment.
</page>

<page instruction>

Directions: In each trial two words will be flashed on the screen.
</page>

<page end>
^^
This is the end. Thank you for participating.
</page>

------------------------------------------------------------------------------------
*** TRIALS ***
------------------------------------------------------------------------------------

<trial targetwords>
/ pretrialpause = 60
/ stimulustimes = [200=target; 1200=targetwords1; 1500=erase; 2100=targetwords2; 2400=erase]
/ trialdata = [targetwords1,targetwords2]
</trial>

<trial transwords>
/ pretrialpause = 60
/ stimulustimes = [200=target; 1200=transwords1; 1500=erase; 2100=transwords2; 2400=erase]
/ trialdata = [transwords1,transwords2]
</trial>

------------------------------------------------------------------------------------
*** BLOCKS ***
------------------------------------------------------------------------------------

<block trials>
/ preinstructions =(instruction)
/ bgstim =(targetword,transword)
/ trials = [1-72 =noreplace(targetwords,transwords)]
</block>

------------------------------------------------------------------------------------
*** EXPERIMENT***
------------------------------------------------------------------------------------

<expt>
/ blocks = [1=trials]
/ preinstructions = (welcome)
/ postinstructions = (end)
</expt>


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K

If you use 'noreplace' you get random selection. If you want to have sequential selection use 'sequence' and refer to the documentation for the /select attribute.


Also, your dependencies don't seem to make sense. Why should <text transwords2> depend on <text targetwords2) as per


<text transwords2>
/ select = linked(targetwords2)
/ erase = true(0,0,0)
/ position = (50,50)
/ items = transwords2
/ font = ("Courier New", -35, 700, 0, 49)
/ txbgcolor = (255,255,255)
/ color = (0,0,0)
</text>


when in fact you do *not* use both in the same trial as per


<trial targetwords>
/ pretrialpause = 60
/ stimulustimes = [200=target; 1200=targetwords1; 1500=erase; 2100=targetwords2; 2400=erase]
/ trialdata = [targetwords1,targetwords2]
</trial>

<trial transwords>
/ pretrialpause = 60
/ stimulustimes = [200=target; 1200=transwords1; 1500=erase; 2100=transwords2; 2400=erase]
/ trialdata = [transwords1,transwords2]
</trial>


?


Certainly you would want targetwords2 to depend on targetwords1  and transwords2 to depend on transwords1, no?


Finally, do *not* use the deprecated linked() dependency. Use current() or next() instead.


Fatma Demiray
Fatma Demiray
Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)Partner Member (574 reputation)
Group: Forum Members
Posts: 21, Visits: 1



Dave, the reason why I would like to use for example
"CAR" (target word) with "MOTORE"(trans. word) under the
first experiment using related word pairs is to expect the participants utter
each word in their native language. Similarly, I would like to construct the
second part of my experiment using the same target words with UNRELATED WORDS
such as "CAR" (target word2) with "MAGLIONE" (unrelated
word). In these two experiments, I am planning to show each Word pair sequentially,
I mean in the same order given above script. I am just wondering whether I am on
the right way or what should I do to correct my mistakes?



GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search