Last chance! 50% off unlimited learning
Sale ends in
At the Department of Neurology, University Clinic of Salzburg, 160 patients were diagnosed
with either AD, MCI, or SCC, based on neuropsychological diagnostics. This data set contains z-scores for brain rate and Hjorth complexity,
each measured at frontal, temporal and central electrode positions and averaged across hemispheres. In addition to standardization, complexity
values were multiplied by -1 in order to make them more easily comparable to brain rate
values: For brain rate we know that the values decrease with age and pathology, while
Hjorth complexity values are known to increase with age and pathology.
The three between-subjects factors considered were sex (men vs. women), diagnosis (AD
vs. MCI vs. SCC), and age (
data(EEG)
A data frame with 960 rows and 7 variables:
EEG measurements
sex of the patient
age of the patient, coded as 0 for less than 70 years and 1 for
neuropsychological diagnosis, AD for Alzheimer's Disease, MCI for mild cognitive impairment or SCC for subjective cognitive complaints without clinically significant deficits
brain region of the EEG measurements, one of "temporal", "frontal" and "central"
feature of the EEG measurements, either "brainrate" or "complexity"
Subject id
# NOT RUN {
library(tidyverse)
ggplot(EEG, aes(x=sex, y=resp)) + geom_point(alpha=0.5) + facet_grid(region+feature~diagnosis) +
stat_summary(fun.y = mean, fun.ymin = min, fun.ymax = max, colour = "red")
# }
Run the code above in your browser using DataLab