π Recruiting Participants β
The first step in recruiting participants is to get the public URL for your study. If you're in the Gureckis Lab, the easiest way to do this is through the #smile-deploy
slack channel. Find the message for your most recent commit, which will look like this:
The public URL for your study is the second one (https://exps.gureckislab.org/e/note-useless-uncle
in the example above).
Prolific β
Posting your study β
From the Prolific dashboard, either click 'New studyβ, or duplicate a previous study from within the 'Completedβ tab on the sidebar (click 'Actionβ, then 'Duplicateβ).
Describe your study in the first section:
In the second section, you provide the study link for your participants. When Prolific sends participants to this URL, it can pass three variables: PROLIFIC_PID (unique to the participant), STUDY_ID (unique to the study), and SESSION_ID (unique to the participant and study). To record these variables, we need to add to the end of the study URL.
First, we need to direct participants to the Prolific welcome page, so we add #/welcome/prolific/
to the end of the URL.
Then, we need to record the variables from Prolific, so we add: ?PROLIFIC_PID={{%PROLIFIC_PID%}}&STUDY_ID={{%STUDY_ID%}}&SESSION_ID={{%SESSION_ID%}}
to the end of the URL.
So the final URL you give Prolific should look like this:
https://exps.gureckislab.org/e/note-useless-uncle/#/welcome/prolific/?PROLIFIC_PID={{%PROLIFIC_PID%}}&STUDY_ID={{%STUDY_ID%}}&SESSION_ID={{%SESSION_ID%}}
Here's how you enter that in Prolific:
Next, you need to tell Prolific how to end the study. Smile automatically redirects participants to Prolific when the study has completed (as long as you include #/welcome/prolific/
in the URL, which directs participants through the Prolific version of your study). So you shoud select "I'll redirect them using a URL":
The completion code doesn't have to be anything in particular. Smile is configured to produce a random completion code specific to each participant, based on a hash of the participants' data file. This can be used to verify that each participants' completion code matches their data (e.g., to prevent completion codes from being shared with people who didn't actually complete the study). As a result, however, the completion code submitted by participants will not match the completion code on Prolific. This is fine -- you can still auto-approve all participants when the study is completed. However, if you want to reject participants who have the incorrect completion code, you may need to do so manually.
You can override the completion code provided by Smile by editing ThanksPage.vue
.
Next, you need to specify your sample. It can sometimes be helpful to screen out participants with a low approval rate or who are very new to Prolific:
Finally, you should enter how long your study takes, and how much you want to pay participants. In the gureckislab, you should aim to pay participants $15/hour. Prolific requires a minimum of $8/hour.
You can now preview your study -- it's good practice to test that Prolific directs you to the correct URL for your study, that Smile saves the Prolific URL parameters with the data, and that you get redirected back to Prolific when the study is completed.
Finally, you can save your study as a draft or publish your study. You can also schedule a later time/date for your study to be published.
Paying participants β
When your study is complete, it will be listed as "AWAITING REVIEW" on the active studies tab:
Click on the name of your study, then click "Approve all" to pay all participants who finished the entire study. If you don't want to approve all participants, you can approve individually by clicking the check mark next to each submission. You can also click "More," then "Approve in bulk" to provide a list of Prolific IDs to approve.
Cloud Research β
Description β
CloudResearchβpreviously known as TurkPrimeβis a service that runs on top of Amazon Mechanical Turk that offers some additional screening and demographic information about workers. The most relevant service for psychologists is probably the MTurk Toolkit. Essentially, CloudResearch pre-screens workers on Mechanical Turk to flag possible bots as well as reliably inattentive participants. The idea is that by using their technology you can get higher quality data than using the low-level MTurk API.
Cloud Research takes several steps to improve the general data quality for surveys including presenting workers questions which they check for consistency (did the subject give the same answer last week as they did today?). They can also perform some demographic sampling/filters if you need samples from particular population groups.
They also provide GUI tools for posting HITs on Mechanical Turk that simplify recruitment.
To get started you first need to create an account on CloudResearch.com
Next, you have to connect your Mechanical Turk account to Cloud Research, effectively granting them access to post and approve HITs on your behalf. CloudResearch provides instructions on doing this here. If you are in the gureckislab you will need to ask Todd to add you to our lab MTurk account.
Posting your study β
Once you have connected your MTurk account (see previous section), go to the CloudResearch dashboard and click "Create Study". You can choose to recruit participants from the Mechanical Turk pool or CloudResearch's own platform, Prime Panels. The steps below assume you have chosen MTurk, but the overall process is similar for both.
In the first section, give your study an internal name and, optionally, list an email address at which to be notified when the study starts and finishes.
In the "survey hyperlink" section, you provide the study link for your participants (see the top of this page). This should be the anonymized version (e.g., https://exps.gureckislab.org/e/note-useless-uncle
). Additionally, we need to direct participants to the Cloud research welcome page, so we add #/welcome/cloudresearch/
to the end of the URL. So an example would look like this:
https://exps.gureckislab.org/e/note-useless-uncle#/welcome/cloudresearch/
Check the "Yes" radio button to auto-capture worker information so that you can later extract it from the query string.
On the "Setup & Payment" page, indicate the amount you'd like to pay each participant. This will depend on the estimated time to complete the study, but should be above minimum wage. In the gureckislab, the target is $15/hour.
On the "Demographics" page, you can target specific participant populations to recruit from, for an added fee.
On the "Worker Approval" page, select how your participants will have their work approved. By default, Smile generates a custom completion code for each participant based on a hash of their data, which can serve as an added confirmation that the data came from that individual CloudResearch participant. To enable this behavior, select the option to approve workers "Manually" and to use a "Custom Completion Code". You could also use a single fixed completion code for all participants (at the risk that this could be shared on a worker forum or similar)βmake sure to edit ThanksPage.vue
if you choose to do so.
When you're done setting up your study, click "Save" and return to the dashboard. From there, select "Launch Options" to either launch your study right away, or schedule a time for it to launch later.
Mechanical Turk β
You can also use π« Smile with "raw" Mechanical Turk. It is generally difficult to work with external surveys on Mechanical Turk so it is recommended to use the Amazon Web Services API to create and manage HITs. This usually requires some extra software such as psiTurk. However, for simply posting a link to your π« Smile experiment it is easy to use Supersubmiterator which is a simple python tool for interfacing with the API.
The instructions for installing and using Supersubmiterator are on that project's github page. The main thing is to replace the experimentURL
field of the config file with the appropriate landing page. In this case it would be (as an example):
"experimentURL": "https://exps.gureckislab.org/e/note-useless-uncle#/welcome/mturk/"
where note-useless-uncle
would be replaced with the unique URL for your project.
To test your "raw" Mturk hit you can look at two different landuing urls. When the subjet is browsing for tasks on the Mturk website they see your page in "preview mode" which corresponds to this URL:
https://exps.gureckislab.org/e/note-useless-uncle#/welcome/mturk/?assignmentId=ASSIGNMENT_ID_NOT_AVAILABLE&hitId=123RVWYBAZW00EXAMPLE&turkSubmitTo=https://www.mturk.com/&workerId=AZ3456EXAMPLE
Mturk adds these parameters to your URL when a participant accepts the hit.
htt?ps://exps.gureckislab.org/e/note-useless-uncle#/welcome/mturk/assignmentId=123RVWYBAZW00EXAMPLE456RVWYBAZW00EXAMPLE&hitId=123RVWYBAZW00EXAMPLE&turkSubmitTo=https://www.mturk.com/&workerId=AZ3456EXAMPLE
which loads slightly different content. You can customize aspects of this via the recruitment/MTurkRecruitPage.vue
component.
Crowd-sourcing β
In the future the lab might make a citizen science recruitment portal. To support this we provides a similar API to prolific/AMT with the more generic CITIZEN_ID type identity variables:
/?CITIZEN_ID=XXXXX&CITIZEN_TASK_ID=123RVWYBAZW00EXAMPLE&CITIZEN_ASSIGN_ID=AZ3456EXAMPLE
However this is not completely implemented.