Group: Forum Members
Posts: 5,
Visits: 18
|
Hi all,
I am trying to restart an exisiting study but would like to have only male participants take it since I have already gathered enough data on females.
I want to include a gender question to confirm that they identify as male but need a command to direct females to the end of the survey and for males to continue with the rest of the survey.
Can anyone shine some light into what to do or if this is possible ?
So far I have this for the gender question and confirmation but not sure where to go from here
GENDER ******************************************************************************************* *********************************************************************** Instruction Text *********************************************************************** <text gender> / items = ("What is your gender?") / hposition = 50% / vposition = 20% / vjustify = center </text>
<text male> / items = ("Male") / fontstyle = ("Verdana", 2.00%, true) / erase = false / txcolor = (white) / txbgcolor = (black) / size = (18%,4%) / hposition = 50% / vposition = 50% / vjustify = center </text>
<text clickmale> / items = ("Male") / fontstyle = ("Verdana", 2.00%, true) / erase = false / txcolor = (white) / txbgcolor = (grey) / size = (18%,4%) / hposition = text.male.hposition / vposition = text.male.vposition / vjustify = center </text>
<text female> / items = ("Female") / fontstyle = ("Verdana", 2.00%, true) / erase = false / txcolor = (white) / txbgcolor = (black) / size = (18%,4%) / hposition = 50% / vposition = 60% / vjustify = center </text>
<text clickfemale> / items = ("Female") / fontstyle = ("Verdana", 2.00%, true) / erase = false / txcolor = (white) / txbgcolor = (grey) / size = (18%,4%) / hposition = text.female.hposition / vposition = text.female.vposition / vjustify = center </text>
<text end1> / items = ("I clicked male") </text>
<text end2> / items = ("I clicked female") </text>
*********************************************************************** Trial (Openended) *********************************************************************** <trial gender> / stimulusframes = [1=gender,male,female] / inputdevice = mouse / validresponse = (male,female) / responsemessage = (male,clickmale,500) / responsemessage = (female,clickfemale,500) </trial>
<trial end1> / stimulusframes = [1=end1] / position = (50%, 80%) / inputdevice = mouse / validresponse = (end1) </trial>
<trial end2> / stimulusframes = [1=end2] / position = (50%, 80%) / inputdevice = mouse / validresponse = (end2) </trial> *********************************************************************** Block *********************************************************************** <block gender> / trials = [1=gender] </block>
<block end1> / trials = [1=end1] / skip = [trial.gender.response == "Female"] </block>
<block end2> / trials = [1=end2] / skip = [trial.gender.response == "Male"] </block> *********************************************************************** Experiment *********************************************************************** <expt gender branch> / blocks = [1=gender; 2=end1; 3=end2] </expt> *********************************************************************** Defaults *********************************************************************** <defaults> / screencolor = (255, 255, 255) / txcolor = (0, 0, 0) / fontstyle = ("Arial", 3%, false) / posttrialpause = 200 / quitcommand =(Ctrl+Alt+18) </defaults> *********************************************************************** Data Columns *not specified* *********************************************************************** *********************************************************************** Test Monkey *********************************************************************** <monkey> / latencydistribution = normal(500, 100) / percentcorrect = 90 </monkey>
Thank you !
|