eegUtils
is a package for performing basic EEG preprocessing and plotting of EEG data. Many of these functions are wrappers around existing R functions to make them behave in consistent ways and produce output that is more amenable to many of the subsequent steps in EEG analysis.
The package implements custom objects to contain EEG data and associated metadata. Some of its functions depend on data being stored in this format, but part of the philosophy of the package is that any object stored in the custom eeg_data
and associated formats will always be convertible to a standard data.frame or tibble for subsequent use in whatever way the user desires. Plotting functions will typically work on both eeg_data
objects and standard formats, while more complex processing functions will require an eeg_data
or related custom object (such as eeg_tfr
).
There is currently suport for loading raw data in the .BDF (typically BioSemi), .CNT (32-bit; associated with Neuroscan), and .vhdr/.vmrk/.dat Brain Vision Analyzer 2.0 file formats using the import_raw()
command. Loading data in these formats results in an eeg_data
object - a structure that contains the raw data and a variety of metadata.
library(eegUtils)
#> Make sure to check for the latest development version at https://github.com/craddm/eegUtils!
#>
#> Attaching package: 'eegUtils'
#> The following object is masked from 'package:stats':
#>
#> filter
eeg_example <- import_raw("F:\\Dropbox\\EEGData\\RawEEGData\\BasicCat\\S2B1.bdf")
#> Importing F:\Dropbox\EEGData\RawEEGData\BasicCat\S2B1.bdf as BDF
eeg_example
#> EEG data
#>
#> Number of channels : 72
#> Electrode names : A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 A11 A12 A13 A14 A15 A16 A17 A18 A19 A20 A21 A22 A23 A24 A25 A26 A27 A28 A29 A30 A31 A32 B1 B2 B3 B4 B5 B6 B7 B8 B9 B10 B11 B12 B13 B14 B15 B16 B17 B18 B19 B20 B21 B22 B23 B24 B25 B26 B27 B28 B29 B30 B31 B32 EXG1 EXG2 EXG3 EXG4 EXG5 EXG6 EXG7 EXG8
#> Sampling rate : 512 Hz
#> Reference :
The data itself is stored in the signals
data frame within the object; the timing of events is stored in the events
data frame, and timings for each sample are stored in the timings
data frame. Times are stored in samples and seconds.
A common first step would be to rereference the data, which can be done using the reref_eeg()
command. By default, if no electrodes are specified, the data will be referenced to a common average. The median rather than the mean can be used by specifiying robust == TRUE
. Electrodes can also be excluded from the average reference calculation; they will nevertheless still be referenced to the same reference as the other channels.
eeg_example <- eeg_reference(eeg_example, ref_chans = "average")
eeg_example <- eeg_reference(eeg_example, ref_chans = "average", robust = TRUE)
eeg_example <- eeg_reference(eeg_example, ref_chans = "average",
exclude = c("EXG7", "EXG8"),
robust = TRUE)
EEGLAB can be loaded using the import_set()
command. The command detects whether the data is epoched or not and, by default, arranges the data in the eeg_data
or eeg_epochs
format.
Filtering can be performed using the eeg_filter()
command. This uses IIR or FIR filters to modify the frequency response of the signal, remove low or high frequency fluctuations as requested.
Data can be epoched around events/triggers using epoch_data()
, which outputs an eeg_epochs
object. A list of the event triggers found in the data can be retrieved using list_events()
. In this case we’ll epoch around event code 201.
list_events(eeg_example)
#> event_type
#> 1 18
#> 2 123
#> 3 125
#> 4 201
#> 5 202
#> 6 50
#> 7 7
#> 8 51
#> 9 21
#> 10 12
#> 11 6
#> 12 14
#> 13 99
eeg_example <- epoch_data(eeg_example,
events = 201,
time_lim = c(-.3, .75))
#> Adjusting output limits to match sampling rate.
#> Output limits: -0.30078125 0.748046875
#> Removing channel means per epoch...
#> Creating 78 epochs.
eeg_epochs
can then be plotted using plot_butterfly()
or plot_timecourse()
. Both plot_butterfly()
and plot_timecourse()
average over epochs. plot_timecourse()
will also average over electrodes - all electrodes if none are specified, or over any specified electrodes. Baseline correction can also be applied at this point if desired. Baseline correction can also be applied using rm_baseline()
, or for plotting only using the baseline
parameter in the plotting call.
plot_timecourse(eeg_example,
time_lim = c(-.2, .5),
baseline = c(-.1, 0),
electrode = "A30") # Plot POz
plot_timecourse(eeg_example,
time_lim = c(-.2, .5),
baseline = c(-.1, 0),
electrode = "B6") # Plot Fz
Standard channel locations can be added using the electrode_locations()
command. This function supplies default locations for over 300 typical locations accroding to the 10-05 system. There are several specific montages provided, and can be specified using the montage
parameter. In this case, the data was recorded using Biosemi with alpha-numeric channel labels (e.g. A1 rather than Fp1), which are built-in with biosemi64alpha
. topoplot()
can then be used to plot topographical representation of selected data. Note that it is not compulsory to use locations from electrode_locations(); if the data has x and y columns when it is a data frame, or added to chan_info
element of the eeg_data
/eeg_epochs
object, then those will be used.
eeg_example <- electrode_locations(eeg_example,
montage = "biosemi64alpha")
#> Electrodes not found: EXG1 EXG2 EXG3 EXG4 EXG5 EXG6 EXG7 EXG8
topoplot(eeg_example,
time_lim = c(.1, .2))
#> Using electrode locations from data.
#> Warning in topoplot.data.frame(data, time_lim = time_lim, limits =
#> limits, : Removing channels with no location.
Note that one electrode (Fp1/A1) was malunctioning during the the recording. We can interpolate that using spherical spline interpolation (interp_elecs()
).
eeg_example <- interp_elecs(eeg_example,
bad_elecs = "A1")
#> Coords missing for electrodes EXG1 EXG2 EXG3 EXG4 EXG5 EXG6 EXG7 EXG8
topoplot(eeg_example,
time_lim = c(.1, .2))
#> Using electrode locations from data.
#> Warning in topoplot.data.frame(data, time_lim = time_lim, limits =
#> limits, : Removing channels with no location.
At any point, eegUtils
objects can be transformed into data frames for use with functions that don’t natively support them.
library(ggplot2)
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
eeg_example %>%
select_epochs(epoch_no = 1:5) %>%
select_elecs(c("A29", "B6")) %>%
as.data.frame(long = TRUE) %>%
ggplot(aes(x = time, y = amplitude)) +
geom_line(aes(group = epoch), alpha = 0.2) +
stat_summary(fun.y = mean,
geom = "line",
size = 2,
aes(colour = electrode)) +
facet_wrap(~electrode) +
theme_classic()
In addition, there are overloaded versions of some dplyr
functions that operate on the signals
element of eeg_data
and eeg_epochs
objects. For example, select()
can be used to choose particular electrodes, and filter()
can be used to filter out epochs or timepoints. mutate()
can be used to add new columns (e.g. creating ROIs from multiple electrodes).
eeg_example %>%
mutate(occipital = (A29 + A27 + B32) / 3) %>%
select(A29, B6, occipital) %>%
filter(epoch <= 60, time < .5) %>%
as.data.frame(long = TRUE) %>%
ggplot(aes(x = time, y = amplitude)) +
geom_line(aes(group = epoch), alpha = 0.2) +
stat_summary(fun.y = mean,
geom = "line",
size = 2,
aes(colour = electrode)) +
facet_wrap(~electrode) +
scale_colour_viridis_d() +
theme_classic()