AlexHartveld / otree-costs-of-control-questionnaire-mturk

oTree environment for reproduction of Falk & Kosfeld's Costs of Control experiment
0 stars 0 forks source link

Mturk advice: group_by_arrival_time #13

Closed AlexHartveld closed 1 year ago

AlexHartveld commented 1 year ago

https://otree.readthedocs.io/en/latest/multiplayer/waitpages.html#wait-pages

A typical way to use group_by_arrival_time is to put it after an app that filters out participants. For example, if your session has a consent page that gives participants the chance to opt out of the study, you can make a “consent” app that just contains the consent pages, and then have an app_sequence like ['consent', 'my_game'], where my_game uses group_by_arrival_time. This means that if someone opts out in consent, they will be excluded from the grouping in my_game.

NicoDiePlume commented 1 year ago