EEGwide {MANOVA.RM} | R Documentation |
EEG Measurements in Patients with Alzheimer's Disease (wide format)
Description
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 (< 70
vs. >= 70
years). Additionally, the within-subjects factors region (frontal, temporal, central) and
feature (brain rate, complexity) structure the response vector.
Usage
data(EEGwide)
Format
A data frame with 160 rows and 9 variables:
- brainrate_temporal
EEG measurements for brainrate in temporal regions
- brainrate_frontal
EEG measurements for brainrate in frontal regions
- brainrate_central
EEG measurements for brainrate in central regions
- complexity_temporal
EEG measurements for complexity in temporal regions
- complexity_frontal
EEG measurements for complexity in frontal regions
- complexity_central
EEG measurements for complexity in central regions
- sex
sex of the patient
- age
age of the patient
- diagnosis
neuropsychological diagnosis, AD for Alzheimer's Disease, MCI for mild cognitive impairment or SCC for subjective cognitive complaints without clinically significant deficits
- AgeGroup
categorized age, coded as 0 for less than 70 years and 1 for
>= 70
years
Details
Note that this data set contains exactly the same data as the data set 'EEG', only the format is different. The
transformation between the different formats can be achieved using, e.g., the tidyr
package.
Source
Bathke, A., Friedrich, S., Konietschke, F., Pauly, M., Staffen, W., Strobl, N. and Hoeller, Y. (2018). Testing Mean Differences among Groups: Multivariate and Repeated Measures Analysis with Minimal Assumptions. Multivariate Behavioral Research. Doi: 10.1080/00273171.2018.1446320.
@examples if(requireNamespace("ggplot2")) library("ggplot2") qplot(data = EEGwide, diagnosis)