FindingFive Discussion Forum
Hybrid stimulus and response format - Printable Version

+- FindingFive Discussion Forum (http://discuss.findingfive.com)
+-- Forum: Researchers (http://discuss.findingfive.com/forumdisplay.php?fid=3)
+--- Forum: Experimental Design (http://discuss.findingfive.com/forumdisplay.php?fid=4)
+--- Thread: Hybrid stimulus and response format (/showthread.php?tid=177)



Hybrid stimulus and response format - Katerina Tsar - 11-22-2021

Hello!
I am trying to create an experiment were people rate emojis for valence and arousal. The total number of emojis is 54, divided into 3 lists (20 - 20 - 14). I have randomised the order of the emojis in each list. Now, my problem is the following:
In every list, I want two images to be presented below each emoji; one picture indicating 9 levels of valence and one picture showing nine arousal levels. Below each picture, a rating option (1-9 Likert scale) should be available. This is the code in Trial Templates for list 1:

"list1":{
  "type":"basic",
  "stimuli":["angry","anxious_sweat",
            "beaming","blow_kiss",
            "confused","dizzy",
            "enraged","fearful",
            "grin_eyes","grin_sweat",
            "halo","kissing",
            "neutral","pensive",
            "savouring","smiling",
            "steam_nose","tongue",
            "unamused","winking"],
  "stimulus_pattern":{"order":"random"},
  "auto_advance":true,
  "responses":["valence_resp", "arousal_resp"]
},


1: Will the rating responses work the way I have included them in the code?
2: How do I include the two images in the stimuli as stable stimuli in each trial?

Thank you very much in advance!
Best,
Katerina


RE: Hybrid stimulus and response format - Ting - 11-22-2021

Hi Katerina,

Please take a look at the grammar documentation where nested lists can be used to display multiple stimuli on the same trial. https://help.findingfive.com/api/trial-templates.html#specifying-stimuli-in-a-trial-template

You may find this tutorial helpful as well: https://news.findingfive.com/2020/04/10/tutorial-adjusting-the-appearance-of-stimuli/

Thanks!


RE: Hybrid stimulus and response format - Katerina Tsar - 11-29-2021

Hi Ting!

Thank you very much for your answer to my post and for the useful links you included. Unfortunately, although they helped on other aspects, I still cannot solve my problem.

Here is the code for the part that doesn't run properly. Basically, I have created three lists, each including a number of stimuli that are images for emojis. I want these images to appear randomnly on screen in position 2 (based on the 3X3 grid). Below them, in positions 4 and 6, two images should appear and they should appear for all emojis (so fixed stimulus pattern). For that I created the trial template "images." Below those images, again with a fixed stimulus pattern, two rating scales should appear, one for each image. These scales I included in the trial template "list" because I want the ratings to be done on the emojis.
When I run this part, only the emoji and the rating for valence appear on screen. I also tried to include the images directly in the Responses for each rating scale, but again it did not work. At the end of the code I attached, you can see the code for the block corresponding to list.

I would really appreciate your advice on what I could do.
Thank you very much!
Best,
Katerina

"list":{
"type":"basic",
"stimuli":["astonished","crying",
"frowning","grin_squint",
"hushed","kissing_smiley_eyes",
"no_mouth","persevering",
"screaming_fear","sleepy",
"smirking","squint_tongue",
"tired","weary"],
"stimulus_pattern":{"order":"random"},
"auto_advance":true,
"location":[2],
"responses":["valence_resp", "arousal_resp"],
"location":[7,9]
},

"images":{
"type":"basic",
"stimuli":[
{
"which":["angenehm_unangenehm", "aufgeregt_ruhig"],
"location":[4,6]
}],
"stimulus_pattern":{"order":"fixed"},
"auto_advance":true
},

"block":{"trial_templates":["list"],

"pattern":{"order":"randomized_trials"}}


RE: Hybrid stimulus and response format - vnicoletta - 11-29-2021

Hi Katerina!

Thank you for reaching out again! I understand you would like the responses to appear simultaneously alongside one another. Unfortunately, FindingFive does not currently allow for such a layout at this time. 

If you would like assistance in creating an alternate design or have any other questions, I am more than happy to help out!

Best,
Victoria


RE: Hybrid stimulus and response format - Katerina Tsar - 11-30-2021

Hello Victoria,

Thank you very much for your reply! I will have to discuss this with my supervisor and then get back to you!

Best,
Katerina


RE: Hybrid stimulus and response format - Ting - 11-30-2021

Hi Katerina,

The primary reason of why we don't allow simultaneous presentation of more than one response has to do when a trial is considered "done". When responses are presented one by one, answering the last response concludes a trial. But when many are visible at the same time, what if the participant answers the last one first? What if the participant just won't want to answer some of them? The complexity scales up quickly, and we don't have a satisfying way to handle it at the moment.

Happy to brainstorm more with you and Victoria.

Ting