Hi Jeremy,
I have designed an experiments through which participants have to give a number in a textinput as an answer. The problem is that in the result file I don’t see my experimental items (words). I only see the participants’ answers (numbers). Therefore, I don’t know what experimental item the given answer belongs to, unless I match it with my .csv file. I will be grateful if you help me with this issue!
My codes are below, if it helps.
Thank you so much!
Sahar
——————————————————-
newText(variable.Word)
.print()
.settings.log()
,
newText(“question”, “How related are the above items in their meaning?”)
.print()
,
newText(“1: very unrelated”)
.print()
,
newText(“2: Unrelated”)
.print()
,
newText(“3: sort of related”)
.print()
,
newText(“4: related”)
.print()
,
newText(“5: very related”)
.print()
,
newTextInput(“Answer”)
.print()
.wait( getTextInput(“Answer”).testNot.text(“”) )
.settings.log()
)
.log( “ID” , getVar(“ID”) )
.log( “Gap” , variable.Gap )
.log( “NoGap” , variable.NoGap )
.log( “Filler” , variable.Filler ) )
PennController.SendResults()
-
This topic was modified 5 years, 2 months ago by Jeremy. Reason: moved to appropriate forum