Skip to content

Commit bcce412

Browse files
committed
reorganize pages
1 parent eb6f26e commit bcce412

3 files changed

Lines changed: 91 additions & 62 deletions

File tree

docs/handbook/programming-guide/basic-experiment-structure.md

Lines changed: 33 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -3,62 +3,56 @@
33
This section outlines the basic structure and components used in most experiments.
44

55
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.
77

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.
1010

1111
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.
1313

1414
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.
1616

1717
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.
1919

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:
2222

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).
2525

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.
2828

29-
- **Tests & Tasks**
29+
- **Tests & Tasks**
3030
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)
3631

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**
3839
At the end of an experiment you will want to collect demographic information about the participant. Usually age, first language, and gender.
3940

40-
```js
41-
const demographics = {
42-
type: "pcllab-form",
43-
demographics: true,
44-
data: {
45-
phase: "demographics",
46-
},
47-
};
48-
```
49-
50-
- **Attention, Seriousness, & Cheating Checks**
41+
```js
42+
const demographics = {
43+
type: "pcllab-form",
44+
demographics: true,
45+
data: {
46+
phase: "demographics",
47+
},
48+
};
49+
```
50+
51+
- **Attention, Seriousness, & Cheating Checks**
5152
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.
5253

53-
- **[Debrief](materials/#debrief.md)**
54+
- **[Debrief](materials.md#debrief.md)**
5455
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.
5556

5657
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.

docs/handbook/programming-guide/materials.md

Lines changed: 55 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
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.
44

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.
76

87
```js
98
...inside experiment.js
109

11-
const EXPERIMENT_FILES = {
10+
const EXPERIMENT_FILES = {
1211
INSTRUCTIONS: "materials/instructions.json",
1312
STIMULI: "materials/stimuli.json",
1413
CONSENT: "materials/consent.html",
@@ -31,7 +30,7 @@ class Experiment {
3130
).then(
3231
$.getJSON(constants.CONSENT, (data) =>{
3332
self.consent = data;
34-
})
33+
})
3534
).then(
3635
$.getJSON(constants.DEBRIEF, (data) =>{
3736
self.debrief = data;
@@ -60,9 +59,10 @@ class Experiment {
6059
...rest of class Experiment
6160
}
6261
```
62+
6363
## Consent
6464

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).
6666

6767
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.
6868

@@ -91,9 +91,9 @@ Department of Psychological Sciences </center> </h4>
9191
<br>
9292

9393
<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+
9797
<h4>What is the purpose of this study?</h4>
9898
<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>
9999

@@ -123,11 +123,12 @@ This experiment is part of an ongoing, multi-year project examining the effectiv
123123
<p>Please print a copy of this consent document for your records.</p>
124124
<p>Please click the box below to indicate if you understand this document and consent to participate in this research study:</p>
125125
```
126+
126127
</details>
127128

128129
## Instructions
129130

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.
131132

132133
```json
133134
// materials/instruction.json
@@ -156,7 +157,7 @@ It is best to have all or most of your instruction pages organized in a single J
156157
}
157158
```
158159

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.
160161

161162
```js
162163
...inside experiment.js
@@ -176,17 +177,50 @@ const instructionsTest = {
176177

177178
## Stimuli
178179

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).
180181

181182
```json
182183
// 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"}]
184+
[
185+
{
186+
"Questions": "Is this unicolored?",
187+
"Picture_Name": "Pepper",
188+
"Picture_Source": "Materials/Pictures/Practice/pepper.jpg",
189+
"Correct_Answer": "Yes"
190+
},
191+
{
192+
"Questions": "Is this inanimate?",
193+
"Picture_Name": "Crab",
194+
"Picture_Source": "Materials/Pictures/Practice/crab.jpg",
195+
"Correct_Answer": "No"
196+
},
197+
{
198+
"Questions": "Is this multicolored?",
199+
"Picture_Name": "Cheese",
200+
"Picture_Source": "Materials/Pictures/Practice/cheese.jpg",
201+
"Correct_Answer": "No"
202+
},
203+
{
204+
"Questions": "Is this animate?",
205+
"Picture_Name": "Bee",
206+
"Picture_Source": "Materials/Pictures/Practice/bee.jpg",
207+
"Correct_Answer": "Yes"
208+
},
209+
{
210+
"Questions": "Is this symmetrical?",
211+
"Picture_Name": "Teapot",
212+
"Picture_Source": "Materials/Pictures/Practice/teapot.jpg",
213+
"Correct_Answer": "No"
214+
},
215+
{
216+
"Questions": "Is this manmade?",
217+
"Picture_Name": "Train",
218+
"Picture_Source": "Materials/Pictures/Practice/train.jpg",
219+
"Correct_Answer": "Yes"
220+
}
221+
]
189222
```
223+
190224
Find information about presenting stimuli [here](study-list.md).
191225

192226
## Debrief
@@ -204,7 +238,7 @@ Debriefing: Sona #984: Memory Experiment
204238

205239
<p><strong>2. Is this correlational or experimental research?</strong> <br>
206240
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+
208242
<p><strong>3. What topic in introductory psychology does this research illustrate?</strong> <br>
209243
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’
210244
<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.
213247
If you are interested in learning more about retrieval practice, here are two relevant references: <br>
214248
<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>
215249
<p> Karpicke, J. D., & Roediger, H. L. (2008). The critical importance of retrieval for learning. <i>Science, 319</i>, 966-968.</p>
216-
250+
217251
<p><strong>5. Which faculty member is supervising this research and how can I contact her/him?</strong> <br>
218252
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.
219253

@@ -223,4 +257,5 @@ Dr. Karpicke began investigating human learning and memory over 15 years ago. Th
223257

224258
<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>
225259
```
226-
</details>
260+
261+
</details>

docs/joinus/graduate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hide:
66

77
# Graduate Applications: Frequently Asked Questions
88

9-
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.
1010
<br><br>
1111

1212
Q: Are you recruiting this year?
@@ -31,7 +31,7 @@ A: No, per rules of the Graduate School, the application fee cannot be waived.
3131

3232
Q: Can you tell me about your current research directions?
3333

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.
3535
<br><br>
3636

3737
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.
4646

4747
Q: Where can I learn more about the graduate program?
4848

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"}.
5050
<br><br>

0 commit comments

Comments
 (0)