Add events to a PhysioExperiment object
References
Delorme A, Makeig S (2004). "EEGLAB: an open source toolbox for analysis of single-trial EEG dynamics." Journal of Neuroscience Methods, 134(1), 9-21.
Oostenveld R, Fries P, Maris E, Schoffelen JM (2011). "FieldTrip: Open source software for advanced analysis of MEG, EEG, and invasive electrophysiological data." Computational Intelligence and Neuroscience, 2011, 156869.
See also
setEvents for replacing all events,
removeEvents for removing events,
getEvents for retrieving events,
nEvents for event count
Examples
pe <- PhysioExperiment(
assays = list(raw = matrix(rnorm(1000), nrow = 100)),
samplingRate = 100
)
# Add stimulus events
pe <- addEvents(pe, onset = c(1, 2, 3), type = "stimulus")
# Add response events
pe <- addEvents(pe, onset = c(1.5, 2.5), type = "response", value = c("hit", "hit"))
nEvents(pe) # 5 events total
#> [1] 5