danish {languageR} | R Documentation |
Auditory lexical decision latencies for Danish complex words.
data(danish)
A data frame with 3326 observations on the following 16 variables.
Subject
Word
Affix
LogRT
PC1
PC2
PrevError
CORRECT
and ERROR
coding whether the preceding trial elicited a correct lexical decision.Rank
Sex
F
(female) and M
(male).LogWordFreq
LogAffixFreq
ResidFamSize
LogWordFreq
and LogAffixFreq
).ResidSemRating
LogCUP
LogUP
LogCUPtoEnd
L. Balling and R. H. Baayen (2008). Morphological effects in auditory word recognition: Evidence from Danish. Submitted to Language and Cognitive Processes.
## Not run: data(danish) # ---- mixed-effects regression with three random intercepts danish.lmer = lmer(LogRT ~ PC1 + PC2 + PrevError + Rank + ResidSemRating + ResidFamSize + LogWordFreq*LogAffixFreq*Sex + poly(LogCUP, 2, raw=TRUE) + LogUP + LogCUPtoEnd + (1|Subject) + (1|Word) + (1|Affix), data = danish) danish.lmerA = lmer(LogRT ~ PC1 + PC2 + PrevError + Rank + ResidSemRating + ResidFamSize + LogWordFreq*LogAffixFreq*Sex + poly(LogCUP, 2, raw=TRUE) + LogUP + LogCUPtoEnd + (1|Subject) + (1|Word) + (1|Affix), data = danish, subset=abs(scale(resid(danish.lmer)))<2.5) mcmc = pvals.fnc(danish.lmerA, nsim=10000, withMCMC=TRUE) mcmc$fixed[,1:5] ## End(Not run)