You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/handbook/programming-guide/basic-experiment-structure.md
+33-39Lines changed: 33 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,62 +3,56 @@
3
3
This section outlines the basic structure and components used in most experiments.
4
4
5
5
1.**[Assigment to Condition and/or Version](counterbalence.md)**
6
-
One of the first things that needs to be done is assiging participants to a condition(s) and/or counterbalance version(s). This is done first, because it will determine which tasks the participant does, the order of those tasks, and which stimuli they see.
6
+
One of the first things that needs to be done is assiging participants to a condition(s) and/or counterbalance version(s). This is done first, because it will determine which tasks the participant does, the order of those tasks, and which stimuli they see.
7
7
8
-
2.**[Consent Form (online only)](materials/#consent.md)**
9
-
Participants must give consent prior to starting the experiment. For online experiments, you will need to present a consent page that shows the participants the consent form and asks them if they agree to participate.
8
+
2.**[Consent Form (online only)](materials.md#consent.md)**
9
+
Participants must give consent prior to starting the experiment. For online experiments, you will need to present a consent page that shows the participants the consent form and asks them if they agree to participate.
10
10
11
11
3.**[Start Screen](starting.md)**
12
-
You will want a start/welcome screen that appears before the first page of the experiment's instructions. For in-person studies, this page will welcome participants and ask them to wait for experimenter to give them instructions before beginning. For online studies, this page asks participants to remove distractions and silence their cellphones before starting.
12
+
You will want a start/welcome screen that appears before the first page of the experiment's instructions. For in-person studies, this page will welcome participants and ask them to wait for experimenter to give them instructions before beginning. For online studies, this page asks participants to remove distractions and silence their cellphones before starting.
13
13
14
14
4.**[Instructions & Materials](materials.md)**
15
-
Throughout the experiment you will present participants with various information (e.g., instructions, stimuli, and debriefing forms). It is best to store and organize this information in a single folder that can be accessed when needed.
15
+
Throughout the experiment you will present participants with various information (e.g., instructions, stimuli, and debriefing forms). It is best to store and organize this information in a single folder that can be accessed when needed.
16
16
17
17
5.**[Timeline](timeline.md)**
18
-
The timeline provides structure to your experiment. Each block of code will create an event (e.g., instructions for a task, presentation of the study list, a free recall test, etc.) for the participant to experience. You will use the timeline to specify when each event should occur during the experiment.
18
+
The timeline provides structure to your experiment. Each block of code will create an event (e.g., instructions for a task, presentation of the study list, a free recall test, etc.) for the participant to experience. You will use the timeline to specify when each event should occur during the experiment.
19
19
20
-
6.**[Plugins](plugins.md)**
21
-
Plugins are used to create experimental events/trials. The let you define what the participant sees, what type of responses can be made, how long a page is presented for, what information about a trial is saved (stored in the data file), and more. They are used to handle:
20
+
6.**[Plugins](plugins.md)**
21
+
Plugins are used to create experimental events/trials. The let you define what the participant sees, what type of responses can be made, how long a page is presented for, what information about a trial is saved (stored in the data file), and more. They are used to handle:
22
22
23
-
-**[Stimuli Presentation](study-list.md)**
24
-
Presenting stimuli to participants is a key part of any experiment. Sometimes we will simply show participants a series of words to learn and remember for a later test. Other times, we will shown participants an item and ask them to make a response (e.g., type an answer to a question or make a rating).
23
+
-**[Stimuli Presentation](study-list.md)**
24
+
Presenting stimuli to participants is a key part of any experiment. Sometimes we will simply show participants a series of words to learn and remember for a later test. Other times, we will shown participants an item and ask them to make a response (e.g., type an answer to a question or make a rating).
25
25
26
-
-**[Distractor Task](distractor.md)**
27
-
We will often include a distractor task in between encoding/study (presentation of stimuli) and the final test.
26
+
-**[Distractor Task](distractor.md)**
27
+
We will often include a distractor task in between encoding/study (presentation of stimuli) and the final test.
28
28
29
-
-**Tests & Tasks**
29
+
-**Tests & Tasks**
30
30
Most experiments include at least one measurement of the participants performance (usually memory) including:
31
-
-[Free Recall](free-recall.md)
32
-
-[Cued Recall](cued-recall.md)
33
-
- Recognition
34
-
- Multiple Choice
35
-
- Judgement of Learning (JoL)
36
31
37
-
-**Demographics**
32
+
-[Free Recall](free-recall.md)
33
+
-[Cued Recall](cued-recall.md)
34
+
- Recognition
35
+
- Multiple Choice
36
+
- Judgement of Learning (JoL)
37
+
38
+
-**Demographics**
38
39
At the end of an experiment you will want to collect demographic information about the participant. Usually age, first language, and gender.
39
40
40
-
```js
41
-
constdemographics= {
42
-
type:"pcllab-form",
43
-
demographics:true,
44
-
data: {
45
-
phase:"demographics",
46
-
},
47
-
};
48
-
```
49
-
50
-
-**Attention, Seriousness, & Cheating Checks**
41
+
```js
42
+
constdemographics= {
43
+
type:"pcllab-form",
44
+
demographics:true,
45
+
data: {
46
+
phase:"demographics",
47
+
},
48
+
};
49
+
```
50
+
51
+
-**Attention, Seriousness, & Cheating Checks**
51
52
Especially for online experiments, you may wish to ask the participant if they cheated, paid attention, and answered honestly. Be sure to explain why this is important to us and that they will not be penalized if they report that they did cheat, weren't paying attention, and/or didn't answer honestly.
52
53
53
-
-**[Debrief](materials/#debrief.md)**
54
+
-**[Debrief](materials.md#debrief.md)**
54
55
The final page of the experiment will be the debrief form. For online experiments participants will be redirected to either SONA or mTurk from here.
55
56
56
57
7.**[Save Data](saving-data.md)**
57
-
When participants reach the end of the experiment (i.e., are shown th debrief form) you will want to save their data to Jarvis. If you are running the experiment in-person you may also want to save a backup CSV file.
58
-
59
-
60
-
61
-
62
-
63
-
64
-
58
+
When participants reach the end of the experiment (i.e., are shown th debrief form) you will want to save their data to Jarvis. If you are running the experiment in-person you may also want to save a backup CSV file.
Copy file name to clipboardExpand all lines: docs/handbook/programming-guide/materials.md
+55-20Lines changed: 55 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,12 @@
2
2
3
3
It is best to store the materials for each experiment in one place (i.e., a folder titled "materials"). You will update these materials for each new experiment. This way, you will have to make fewer changes to the basic experiment structure/logic and your `experiment.js` file will be more clean and concise.
4
4
5
-
These files will often be [JSON files](file-types/#JSON.md) but they can also be HTML files. You will need to load these in `experiment.js` make accessible.
6
-
5
+
These files will often be [JSON files](file-types.md#JSON.md) but they can also be HTML files. You will need to load these in `experiment.js` make accessible.
7
6
8
7
```js
9
8
...inside experiment.js
10
9
11
-
constEXPERIMENT_FILES= {
10
+
constEXPERIMENT_FILES= {
12
11
INSTRUCTIONS:"materials/instructions.json",
13
12
STIMULI:"materials/stimuli.json",
14
13
CONSENT:"materials/consent.html",
@@ -31,7 +30,7 @@ class Experiment {
31
30
).then(
32
31
$.getJSON(constants.CONSENT, (data) =>{
33
32
self.consent= data;
34
-
})
33
+
})
35
34
).then(
36
35
$.getJSON(constants.DEBRIEF, (data) =>{
37
36
self.debrief= data;
@@ -60,9 +59,10 @@ class Experiment {
60
59
...rest ofclassExperiment
61
60
}
62
61
```
62
+
63
63
## Consent
64
64
65
-
For all experiments, participant will need to give their informed consent (or, if they are under 18, assent) before they can participate. For in-lab studies we use signed consent forms (paper copies).
65
+
For all experiments, participant will need to give their informed consent (or, if they are under 18, assent) before they can participate. For in-lab studies we use signed consent forms (paper copies).
66
66
67
67
For online studies, this form is shown at the start of the experiment. If the participant agrees to participate then they can continue, if not the program ends.
68
68
@@ -91,9 +91,9 @@ Department of Psychological Sciences </center> </h4>
91
91
<br>
92
92
93
93
<h4>Key Information</h4>
94
-
<p>Please take time to review this information carefully. This is a research study. Your participation in this study is voluntary which means that you may choose not to participate at any time without penalty or loss of benefits to which you are otherwise entitled. You may ask questions to the researchers about the study whenever you would like. If you decide to take part in the study, you will be asked to sign this form, be sure you understand what you will do and any possible risks or benefits. <br>
95
-
This experiment is part of an ongoing, multi-year project examining the effectiveness of different learning and study strategies. The overall purpose of this research is to investigate the effects of different study techniques on learning. Your participation will take no more than 60 minutes. Additional explanations may be more detailed in the sections below.</p>
96
-
94
+
<p>Please take time to review this information carefully. This is a research study. Your participation in this study is voluntary which means that you may choose not to participate at any time without penalty or loss of benefits to which you are otherwise entitled. You may ask questions to the researchers about the study whenever you would like. If you decide to take part in the study, you will be asked to sign this form, be sure you understand what you will do and any possible risks or benefits. <br>
95
+
This experiment is part of an ongoing, multi-year project examining the effectiveness of different learning and study strategies. The overall purpose of this research is to investigate the effects of different study techniques on learning. Your participation will take no more than 60 minutes. Additional explanations may be more detailed in the sections below.</p>
96
+
97
97
<h4>What is the purpose of this study?</h4>
98
98
<p>The overall purpose of this research is to investigate the effects of different study techniques on learning. We would like to enroll 700 people in this experiment.</p>
99
99
@@ -123,11 +123,12 @@ This experiment is part of an ongoing, multi-year project examining the effectiv
123
123
<p>Please print a copy of this consent document for your records.</p>
124
124
<p>Please click the box below to indicate if you understand this document and consent to participate in this research study:</p>
125
125
```
126
+
126
127
</details>
127
128
128
129
## Instructions
129
130
130
-
It is best to have all or most of your instruction pages organized in a single JSON file.
131
+
It is best to have all or most of your instruction pages organized in a single JSON file.
131
132
132
133
```json
133
134
// materials/instruction.json
@@ -156,7 +157,7 @@ It is best to have all or most of your instruction pages organized in a single J
156
157
}
157
158
```
158
159
159
-
You can then add the each set of text (i.e., each page of instructions) into the relevant part of your timeline.
160
+
You can then add the each set of text (i.e., each page of instructions) into the relevant part of your timeline.
160
161
161
162
```js
162
163
...inside experiment.js
@@ -176,17 +177,50 @@ const instructionsTest = {
176
177
177
178
## Stimuli
178
179
179
-
This is whatever the participant is given to learn/study/respond to etc. Stimuli are often text (e.g., a list of words, cue-target pairs, a text passage), but they can also be pictures (.jpg or .pgn), videos (.mp4) or audio clips (.wav). Regardless of their type, you should organize them in a JSON file(s). [Mr. Data Converter](http://shancarter.github.io/mr-data-converter/){target="_blank" rel="noreferrer"} is an excellent tool for converting CSV files into JSON files (or other file types).
180
+
This is whatever the participant is given to learn/study/respond to etc. Stimuli are often text (e.g., a list of words, cue-target pairs, a text passage), but they can also be pictures (.jpg or .pgn), videos (.mp4) or audio clips (.wav). Regardless of their type, you should organize them in a JSON file(s). [Mr. Data Converter](http://shancarter.github.io/mr-data-converter/){target="\_blank" rel="noreferrer"} is an excellent tool for converting CSV files into JSON files (or other file types).
180
181
181
182
```json
182
183
// materials/stimuli.json
183
-
[{"Questions":"Is this unicolored?","Picture_Name":"Pepper","Picture_Source":"Materials/Pictures/Practice/pepper.jpg","Correct_Answer":"Yes"},
184
-
{"Questions":"Is this inanimate?","Picture_Name":"Crab","Picture_Source":"Materials/Pictures/Practice/crab.jpg","Correct_Answer":"No"},
185
-
{"Questions":"Is this multicolored?","Picture_Name":"Cheese","Picture_Source":"Materials/Pictures/Practice/cheese.jpg","Correct_Answer":"No"},
186
-
{"Questions":"Is this animate?","Picture_Name":"Bee","Picture_Source":"Materials/Pictures/Practice/bee.jpg","Correct_Answer":"Yes"},
187
-
{"Questions":"Is this symmetrical?","Picture_Name":"Teapot","Picture_Source":"Materials/Pictures/Practice/teapot.jpg","Correct_Answer":"No"},
188
-
{"Questions":"Is this manmade?","Picture_Name":"Train","Picture_Source":"Materials/Pictures/Practice/train.jpg","Correct_Answer":"Yes"}]
Find information about presenting stimuli [here](study-list.md).
191
225
192
226
## Debrief
@@ -204,7 +238,7 @@ Debriefing: Sona #984: Memory Experiment
204
238
205
239
<p><strong>2. Is this correlational or experimental research?</strong> <br>
206
240
The study you participated in represents experimental research. The independent variable we manipulated was the study technique you engaged in (e.g., repeated studying vs. repeated retrieval), and the dependent variable we are interested in is your performance on a final test. We predict that practicing repeated retrieval will produce better retention than repeated studying. </p>
207
-
241
+
208
242
<p><strong>3. What topic in introductory psychology does this research illustrate?</strong> <br>
209
243
The current research falls within the general area of human learning and memory. For an overview of research on human memory, see Chapter 8 in Nairne’s <i>Psychology: The Adaptive Mind (4th Edition)</i>, Chapter 9 in Meyers’
210
244
<i>Psychology (8th Edition)</i>, or Chapter 9 in Gray’s <i>Psychology (5th Edition)</i>. Another excellent book covering current research on human memory is <i>The Seven Sins of Memory</i>, by Dan Schacter. </p>
@@ -213,7 +247,7 @@ The current research falls within the general area of human learning and memory.
213
247
If you are interested in learning more about retrieval practice, here are two relevant references: <br>
214
248
<p> Karpicke, J. D., & Roediger, H. L. (2007). Repeated retrieval during learning is the key to long-term retention. <i>Journal of Memory and Language, 57</i>, 151-162.<br></p>
215
249
<p> Karpicke, J. D., & Roediger, H. L. (2008). The critical importance of retrieval for learning. <i>Science, 319</i>, 966-968.</p>
216
-
250
+
217
251
<p><strong>5. Which faculty member is supervising this research and how can I contact her/him?</strong> <br>
218
252
Dr. Jeffrey Karpicke, a professor in cognitive psychology, is supervising this research. You may reach him at (765) 494-0273, via email at karpicke@purdue.edu, or in room PRCE 389.
219
253
@@ -223,4 +257,5 @@ Dr. Karpicke began investigating human learning and memory over 15 years ago. Th
223
257
224
258
<p><strong>A lot of research in psychology depends on the participation of individuals like you. We are very grateful for your help. Thank you very much for participating.</p>
Thank you for your interest in graduate studies in our laboratory. Here are answers to frequently asked questions we receive from applicants.
9
+
Thank you for your interest in graduate studies in our laboratory. Here are answers to frequently asked questions we receive from applicants.
10
10
<br><br>
11
11
12
12
Q: Are you recruiting this year?
@@ -31,7 +31,7 @@ A: No, per rules of the Graduate School, the application fee cannot be waived.
31
31
32
32
Q: Can you tell me about your current research directions?
33
33
34
-
A: The best way to learn about our current research is by looking at our recent [publications](../../publications/){target="_blank" rel="noreferrer"} and [projects](../../projects/){target="_blank" rel="noreferrer"} on our website.
34
+
A: The best way to learn about our current research is by looking at our recent [publications](../publications.md){target="\_blank" rel="noreferrer"} and [projects](../projects.md){target="\_blank" rel="noreferrer"} on our website.
35
35
<br><br>
36
36
37
37
Q: Can we set up at time to talk?
@@ -46,5 +46,5 @@ A: No, I'm unable to review your materials before you apply.
46
46
47
47
Q: Where can I learn more about the graduate program?
48
48
49
-
A: Here are links to the [Psychological Sciences Department](https://hhs.purdue.edu/psy/){target="_blank" rel="noreferrer"} and the [Cognitive Psychology graduate program](https://www.purdue.edu/hhs/psy/graduate/graduate_training_areas/cognitive_psychology/index.html){target="_blank" rel="noreferrer"}.
49
+
A: Here are links to the [Psychological Sciences Department](https://hhs.purdue.edu/psy/){target="\_blank" rel="noreferrer"} and the [Cognitive Psychology graduate program](https://www.purdue.edu/hhs/psy/graduate/graduate_training_areas/cognitive_psychology/index.html){target="\_blank" rel="noreferrer"}.
0 commit comments