Description Usage Format Details Source Examples
Filtered fMRI signal at the most significant voxel and average priming scores for brain-damaged patients, in a study addressing the extent to which phonological and semantic processes recruit the same brain areas.
1 |
A data frame with 35 observations on the following 3 variables.
Condition
a factor with levels
irregulars
(the morphological condition involving priming using
inflected forms of irregular English verbs, e.g., 'began'-'begin')
and semantics
(priming with semantically related words such
as 'card' and 'paper').
BehavioralScore
a numeric vector for the average priming scores.
FilteredSignal
a numeric vector for the intensity of the filtered fMRI signal at the most significant voxel.
Location of data points reconstructed from the pixel map of Figure 2b of Tyler et al. 2005.
Tyler, L.K., Marslen-Wilson, W.D. and Stamatakis, E.A. (2005) Differentiating lexical form, meaning, and structure in the neural language system, PNAS, 102, 8375-8380.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ## Not run:
data(imaging)
imaging.lm = lm(FilteredSignal~BehavioralScore*Condition, data=imaging)
summary(imaging.lm)
plot(imaging$BehavioralScore, imaging$FilteredSignal, type = "n",
xlim = c(-30, 40), ylim = c(0, 80))
semantics = imaging[imaging$Condition == "semantics",]
irregulars = imaging[imaging$Condition == "irregulars",]
points(semantics$BehavioralScore, semantics$FilteredSignal, col = "black")
points(irregulars$BehavioralScore, irregulars$FilteredSignal, col = "darkgrey")
abline(lm(FilteredSignal ~ BehavioralScore, data = semantics), col = 'black')
abline(lm(FilteredSignal ~ BehavioralScore, data = irregulars),
col = 'darkgrey')
# model criticism
plot(imaging.lm)
outliers = c(1, 19) # given Cook's distance, or perhaps only
outliers = 1 # the outlier in the semantics subset
imaging.lm = lm(FilteredSignal ~ BehavioralScore * Condition,
data = imaging[-outliers, ])
summary(imaging.lm)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.