Forum Replies Created
-
AuthorPosts
-
Mogli
Participantokay, sorry. Both links do not work. I have tried now the first suggstion
My study begins with a html (welcome, instructions) two practice trials. Then it comes the part with the embedded csv file and the url works.
PennController.SetCounter(); PennController.Template( "ListeCSV.csv" , variable => PennController( newText(variable.SocStat_text) .settings.bold() .settings.color("blue") .settings.center() .print() , newText(variable.Sentence) .settings.center() .settings.bold() .print() , newText("korrekt", "Wie grammatikalisch korrekt finden Sie diesen Satz?") .settings.center() .print() , newScale("korrekt", 7) .settings.center() .settings.before( newText("left", "1 <br /> (trifft gar nicht zu)") ) .settings.after( newText("right", "7 <br /> (trifft voll und ganz zu)") ) .print() .settings.log() .wait() .remove() , getText("korrekt") .remove() ) .log( "List" , variable.List ) .log( "Block" , variable.Block ) .log( "Item" , variable.Item ) .log ( "expSet" , variable.expSet ) .log ( "grammatically_correct" , variable.grammatically_correct ) .log ( "condition" , variable.condition ) .log ( "WP1_match" , variable.WP1_match ) .log ( "WP2_tense" , variable.WP2_tense ) .log ( "SocStat_context", variable.SocStat_context ) .log ( "SocStat_contextVers" , variable.SocStat_contextVers ) .log ( "Group" , variable.Group ) );
Mogli
ParticipantNo. I have forgotten to replace html. This one should be the correct one:
https://korpling.german.hu-berlin.de/ibexexps/Mogli/clickmh/server.py?withsquare=8
Mogli
Participantregarding your suggestion 2. a:
This is my original link:
https://korpling.german.hu-berlin.de/ibexexps/Mogli/clickmh/experiment.htmland this is how you have suggested it:
https://korpling.german.hu-berlin.de/ibexexps/Mogli/clickmh/server.py?withsquare=8.html
Right? (8 for 8 participants and 8 lists, so every participant gets another list)
Mogli
ParticipantI checked the times of the responses in my result file and I think you are right, that the participants ended up in the same group.
Mogli
ParticipantHey Jeremy,
thank you for your help. I did a test run before.
I rely on the internal counter. I used the csv file with the group column:List,Block,Item,expSet,grammatically_correct,condition,WP1_match,WP2_tense,SocStat_context,SocStat_contextVers,SocStat_text,Group,Sentence
1,1,2,WP2,no,h,x,past,high,1,<p>Die folgenden Sätze wurden von einer Person geschrieben, die in München aufgewachsen ist und dort zur Schule gegangen ist.<br> Die Person arbeitet aktuell als Lehrperson an einem Gymnasium. Die Person spielt zwei mal die Woche Tennis.</br></p> ,A,Der Skinhead züchtigen den Sträfling.2,2,28,SocStat,yes,a,x,x,low,1,<p>Die folgenden Sätze wurden von einer Person geschrieben, die in Offenbach aufgewachsen und dort zur Schule gegangen ist.<br> Die Person arbeitet aktuell als Verkaufskraft in einem Obst- und Gemüseladen. Die Person geht zwei mal die Woche joggen.</br></p>,B,Ich mutmaße, dass der Park wegen der schmalen Größe übersichtlich ist.
—–
And this is my PennController Skript:
PennController.Template( “ListeCSV.csv” ,
variable => PennController(newText(variable.SocStat_text)
.settings.bold()
.settings.color(“blue”)
.settings.center()
.print(),
newText(variable.Sentence)
.settings.center()
.settings.bold()
.print(),
newCanvas(“empty canvas53”, 1, 40)
.print(),
newTimer(“wait”, 5000)
.start()
.wait(),
newText(“korrekt”, “Wie grammatikalisch korrekt finden Sie diesen Satz?”)
.settings.center()
.print(),
newScale(“korrekt”, 7)
.settings.center()
.settings.before( newText(“left”, “1 <br /> (trifft gar nicht zu)”) )
.settings.after( newText(“right”, “7 <br /> (trifft voll und ganz zu)”) )
.print()
.settings.log()
.wait()
.remove(),
getText(“korrekt”)
.remove())
.log( “List” , variable.List )
.log( “Block” , variable.Block ))
Again, thank you very much.
Mogli
ParticipantHey Jeremy,
the lists were not distributed đ it picked all the time the same list. This is really a problem since the participants were paid. Do you have an idea why this happened?
Mogli
Mogli
ParticipantHey,
i have one last question before I finish my work. I had to separate my 16 lists into 1-8 and 9-16. Is it necessary to begin a Group column with the letter A or can it begin also with the letter I?
Kind regards,
Mogli
Mogli
ParticipantNow everything is fine. Thank you!
Mogli
ParticipantHey Jeremy,
unfortunately the slide does not disappear after clicking it or after the timer has expired. Is there a way to solve this?
Kind regards
Mogli
Mogli
ParticipantThank you again.
I tried a few commands to have something like a time-out, but it does not work. It means if a participant is not fast enough to klick the slide (e.g. longer than 4 sec) I want to skip to the next slide. Is all this together possible?
Furthermore, if I run the experiment, there is always the little PennController window in the corner right, is it possible to avoid this?
Mogli
ParticipantOkay. Thank you a lot.
Mogli
ParticipantNow it works.
One last question:
I have 3 slides after every Item; Is there a possibility to show one slide after another? That the participant click the first slide, than it disappears and the next one comes up, and than the same for the last?
These are my slides:
newText(“Skala2”, “Wie akzeptabel finden Sie den Satz?”)
.print(),
newCanvas(“empty canvas6”, 1, 40)
.print(),
newScale(“akzeptabilität”, 7)
.settings.before( newText(“left1”, “1 <br /> (am unakzeptabelsten)”) )
.settings.after( newText(“right2”, “7 <br /> (am akzeptabelsten)”) )
.settings.slider()
.print()
.settings.log()
.wait(),
newCanvas(“empty canvas5”, 1,40)
.print(),
newCanvas(“empty canvas11”, 1, 40)
.print(),
newText(“Skala3”, “Würden Sie den Satz selbst schreiben?”)
.print(),
newCanvas(“empty canvas7”, 1,40)
.print(),
newScale(“Würden Sie den Satz selbst schreiben?1”, 7)
.settings.before( newText(“left3”, “1 <br /> (nein)”) )
.settings.after( newText(“right3”, “7 <br /> (ja)”) )
.settings.slider()
.print()
.settings.log()
.wait())
Mogli
ParticipantHey Jeremy
It works perfectly and is much easier that way. But there is one problem left: If I replace the commas in the cvs-file in the sentences like you did (&\#44;), it gets not interpreted like a comma. Instead it shows: âIch befĂźrchte&\#44; dass die Strecke wegen des frĂźhen Rennens umgeleitet ist.â
And if I write a normal comma it gets misinterpreted and Ibex shows just the first two words. Do you have a solution for that?Thank you a lot for your help.
Mogli
Mogli
ParticipantHey Jeremy,
Thank you so much, it works!
the list I have sent you has originally 172 items. I created a csv file and uploaded it to chunk_includes.
In your example you added the list directly to PennController, do I understand it right?Kind regards
Mogli
Mogli
ParticipantHey Jeremy,
thank you for your help. It solved my problem.
Thank you
Mogli
-
AuthorPosts