- This deck covers an essential element of experiment design in psychology and cognitive science: between-subjects vs. within-subjects designs, repeated measures, and mixed designs.
2024
data.table
## participant condition score ## <num> <char> <num> ## 1: 1 A 10 ## 2: 1 B 12 ## 3: 2 A 11 ## 4: 2 B 13 ## 5: 3 A 9 ## 6: 3 B 11
participant
column.data.table
## participant condition score ## <num> <char> <num> ## 1: 1 A 10 ## 2: 2 A 11 ## 3: 3 A 9 ## 4: 4 B 10 ## 5: 5 B 11 ## 6: 6 B 9
participant
column.Repeated Measures Design involves multiple measurements from the same source.
The source is usually a participant so a repeated measures design is usually – but not always – a within-subjects design.
E.g., A repeated measures design that isn’t also a within-subject design is collecting multiple mesurement from the same EEG sensors over multiple days, but each day with a different participant.
Mixed Designs combine elements of both between-subjects and within-subjects designs.
At least one variable is manipulated as a between-subjects factor, and another as a within-subjects factor.
data.table
## participant condition group score ## <num> <char> <char> <num> ## 1: 1 A X 10 ## 2: 1 B X 12 ## 3: 2 A Y 11 ## 4: 2 B Y 13 ## 5: 3 A Z 9 ## 6: 3 B Z 11
group
column is a between-subjects factor, while the condition
column is a within-subjects factor.Consider the following data.table
output from an experiment:
participant condition score 1: 1 A 12 2: 2 A 15 3: 3 A 13 4: 4 B 14 5: 5 B 16 6: 6 B 12
What type of experimental design does this data represent?
Review this data.table
output:
participant condition score 1: 1 A 10 2: 1 B 12 3: 2 A 11 4: 2 B 13 5: 3 A 9 6: 3 B 11
Which experimental design is illustrated by this data.table
?
Given the data.table
output from a study:
participant condition group score 1: 1 A X 10 2: 1 B X 12 3: 2 A Y 11 4: 2 B Y 13 5: 3 A Z 9 6: 3 B Z 11
What type of design does this dataset suggest?
Examine the output below from a data.table
:
participant condition score 1: 1 A 14 2: 2 A 15 3: 1 B 16 4: 2 B 14 5: 3 A 13 6: 3 B 15
Based on this output, which experimental design is being used?