| primingHeidPrevRT {languageR} | R Documentation |
Primed lexical decision latencies for neologisms ending in -heid
Description
Primed lexical decision latencies for Dutch neologisms ending in the suffix -heid, with information on RTs to preceding trials added to the data already in primingHeid.
Usage
data(primingHeidPrevRT)
Format
A data frame with 832 observations on the following 17 variables.
Subjecta factor with subjects as levels.
Worda factor with words as levels.
Triala numeric vector for the rank of the trial in its experimental list.
RTa numeric vector with log-transformed lexical decision latencies.
Conditiona factor coding the priming treatmen, with levels
baseheid(prime is the base word) andheid(the prime is the neologism)Ratinga numeric vector for subjective frequency estimates.
Frequencya numeric vector for log-transformed frequencies of the whole word.
BaseFrequencya numeric vector for the log-transformed frequencies of the base word.
LengthInLettersa numeric vector coding orthographic length in letters.
FamilySizea numeric vector for the log-transformed count of the word's morphological family.
NumberOfSynsetsa numeric vector for the number of synonym sets in WordNet in which the base is listed.
ResponseToPrimea factor with levels
correctandincorrectfor the response to the prime.RTtoPrimea numeric vector for the log-transformed reaction time to the prime.
RTmin1a numeric vector for reaction time in ms to the item preceding the target.
RTmin2a numeric vector for reaction time in ms to the item preceding the target by two trials.
RTmin3a numeric vector for reaction time in ms to the item preceding the target by three trials.
RTmin4a numeric vector for reaction time in ms to the item preceding the target by four trials.
References
De Vaan, L., Schreuder, R. and Baayen, R. H. (2007) Regular morphologically complex neologisms leave detectable traces in the mental lexicon, The Mental Lexicon, 2, in press.
Examples
## Not run:
data(primingHeidPrevRT)
require(lme4)
require(optimx)
require(lmerTest)
primingHeid.lmer = lmer(RT ~ RTtoPrime * ResponseToPrime + Condition +
log(RTmin1) + (1|Subject) + (1|Word), data = primingHeidPrevRT,
control=lmerControl(optimizer="optimx",optCtrl=list(method="nlminb")))
summary(primingHeid.lmer)
## End(Not run)