Group: Forum Members
Posts: 3,
Visits: 17
|
Hi, We're experiencing a strange data recording issue with surveypages. A reproducible example is below. But basically we randomly choose one textbox question from within a surveypage. However, when we look at the data, answers from prior trials remain as data for the new trial, and there is a row for all three textboxes even though the participant only sees one and now data is recorded from the other. As far as we can tell, there is no way to look at the .iqdat and understand which is the actual trial the participant saw and therefore the actual response they provided. Any advice/thoughts about what is going on and potential work-arounds? Thanks
<surveypage genderQ> /questions = [1=random(male,female,total)] /showquestionnumbers = TRUE /showpagenumbers = FALSE </surveypage>
<textbox male> / caption="How many male faces did you see?" / mask=positiveinteger / range = (0, 100) </textbox>
<textbox female> / caption="How many female faces did you see?" / mask=positiveinteger / range = (0, 100) </textbox>
<textbox total> / caption="How many faces did you see?" / mask=positiveinteger / range = (0, 100) </textbox>
** Blocks from here ***
<block White_genderQ> / trials = [1-20=genderQ] </block>
|