173 participants completed the study (118 women and 55 men). Mean age was 19 years (SD = 1).
In the study phase, participants completed a task switching procedure
As a filler task, participants completed the letter-memory task.
In the test phase, a surprise recognition memory test assessed participantās memory for stimuli presented in the study phase
In a final questionnaire Trait Self-Control was assessed.
Overall the hit rate was 0.498 (SE = 0.014) and the false alarms rate was 0.206 (SE = 0.013).
Subtracting the false alarm rate from the hit rate gives us dā, which is the basis to compute the correlation with trait self-control.
Scatter plot with all participants:
## `geom_smooth()` using formula 'y ~ x'
##
## Shapiro-Wilk normality test
##
## data: df$selfcontrol
## W = 0.98835, p-value = 0.1646
##
## Shapiro-Wilk normality test
##
## data: df$d
## W = 0.93445, p-value = 4.315e-07
dā is not from a normal distribution
Letās look at the Q-Q plots
# selfcontrol
ggqqplot(df$selfcontrol, ylab = "selfcontrol")# d
ggqqplot(df$d, ylab = "d'")res <- cor.test(df$selfcontrol, df$d,
method = "kendall")
res##
## Kendall's rank correlation tau
##
## data: df$selfcontrol and df$d
## z = 0.36012, p-value = 0.7188
## alternative hypothesis: true tau is not equal to 0
## sample estimates:
## tau
## 0.01879384
check distribution of dā (factor gender just for fun)
It would probably be wise to remove participants with very low dā scores (<.1)
Thatās betterā¦
## Warning: geom_vline(): Ignoring `mapping` because `xintercept` was provided.
## Warning: geom_vline(): Ignoring `data` because `xintercept` was provided.
##
## Shapiro-Wilk normality test
##
## data: df$selfcontrol
## W = 0.98687, p-value = 0.201
##
## Shapiro-Wilk normality test
##
## data: df$d
## W = 0.99042, p-value = 0.4497
Thatās fine.
## `geom_smooth()` using formula 'y ~ x'
(This result corresponds to the output from Jamovi)
I believe the mean of target memory and distractor memory masks the relationship. Because, if you are good at selective processing then you would remember more targets than distractors (because attention is highly focused during encoding).
So letās try this with only hits for targets. Itās also better because then we have the same number of trials used for computing hitrate and false alarm rate (there was a 2:1 ratio for the items old:new, as old items were divided into targets and distractors)
##
## Shapiro-Wilk normality test
##
## data: df$selfcontrol
## W = 0.98687, p-value = 0.201
##
## Shapiro-Wilk normality test
##
## data: df$d_target
## W = 0.97661, p-value = 0.01607
Ugh the dā score for targets is again not normally distributed. Letās check:
## Warning: geom_vline(): Ignoring `mapping` because `xintercept` was provided.
## Warning: geom_vline(): Ignoring `data` because `xintercept` was provided.
slightly skewedā¦
## `geom_smooth()` using formula 'y ~ x'
Z-standardization
Letās check gender just for fun (with z-transformed-variables):
## `geom_smooth()` using formula 'y ~ x'
Would it be of interest to look at switch vs.Ā repeat trials separately? And also include the emotionality variable? Or separate by material (pictures vs.Ā words)?
## `geom_smooth()` using formula 'y ~ x'
This is also a kind of sensitivity measureā¦
## `geom_smooth()` using formula 'y ~ x'
## `geom_smooth()` using formula 'y ~ x'
## `geom_smooth()` using formula 'y ~ x'
## `geom_smooth()` using formula 'y ~ x'
## `geom_smooth()` using formula 'y ~ x'
## `geom_smooth()` using formula 'y ~ x'