Group: Forum Members
Posts: 38,
Visits: 173
|
Hi I am a bit new to Inquisit. I have two groups of texts (Group-A and Group-B). Each group contains 5 different texts (so there are 10 different texts altogether in two groups). I have to select one group at random and then select a text from that group randomly. After text is displayed I have to rate the text with 3 questions (I will use radio button for each of these questions). I have to make sure that all texts are displayed to complete my experiment.
How can I do this so that I can collect the data: what text was displayed, rating response-1, rating response-2, rating response-3? I am currently doing in this way but fails to get the way I want my data to be organised:
<expt exp1> / blocks = [1-20= myblock] / recorddata = true </expt>
<block myblock> / trials = [1 =list.triallist; 2 = testRate] </block>
<list triallist> / items = (trial.a, trial.b) / poolsize = 20 / itemprobabilities = (0.50; 0.50) / maxrunsize = 1 </list>
<trial a> / stimulusframes = [1 = text1] / trialduration = 1000 / recorddata = true </trial>
<trial b> / stimulusframes = [1 = text2] / trialduration = 1000 / recorddata = true </trial>
<text text1> / items = a / fontstyle = ("MS Shell Dlg 2", 6.42%, false, false, false, false, 5, 1) </text>
<text text2> / items = b / fontstyle = ("MS Shell Dlg 2", 6.42%, false, false, false, false, 5, 1) </text>
<item a> / 1 = "1" / 2 = "2" / 3 = "3" / 4 = "4" / 5 = "5" </item>
<item b> / 1 = "A" / 2 = "B" / 3 = "C" / 4 = "D" / 5 = "E" </item>
<surveypage testRate> / fontstyle = ("Arial", 4%, false, false, false, false, 5, 1) /subcaptionfontstyle = ("Arial", 3%, false, false, false, false, 5, 1) /itemfontstyle = ("Arial", 4%, false, false, false, false, 5, 1) /responsefontstyle = ("Arial", 3%, false, false, false, false, 5, 1) / txcolor = (0, 0, 0) /questions = [1 = AType, BType, CType] /showpagenumbers = false /showquestionnumbers = false /backbuttonposition = (10%, 90%) /nextbuttonposition = (90%, 90%) / finishlabel = "Next" / nextlabel = "Next" </surveypage>
<radiobuttons AType> /caption = "A type quesion..." / options = ( "1", "2", "3", "4", "5", ) /required = true /orientation = horizontal / position = (20%, 15%) </radiobuttons>
<radiobuttons BType> /caption = "B type question..." / options = ( "1", "2", "3", "4", "5", ) /required = true /orientation = horizontal / position = (20%, 35%) </radiobuttons>
<radiobuttons CType> /caption = "C type question..." / options = ( "1", "2", "3", "4", "5", ) /required = true /orientation = horizontal / position = (20%, 60%) </radiobuttons>
Any idea would be highly appreciated
Thank you.
|