,
R/tbl.R
channels_tbl.Rd
Functions to get or set the channel information of an eeg_lst object.
channels_tbl(.data, ...)
channels_tbl(.data) <- value
An eeg_lst object.
Not in use.
A channel table.
A table.
Other functions to expose internal parts of eeg_(ica_)_lst:
events_tbl()
,
ica_matrix_lst()
,
segments_tbl()
,
signal_tbl()
if (FALSE) {
library(dplyr)
# Get channel information:
channels_tbl(faces_seg)
# Set channel information using dplyr's mutate and replace
channels_tbl(faces_seg) <- mutate(channels_tbl(faces_seg),
.channel = replace(.channel, .channel == "HEOG", "EOGH"),
.channel = replace(.channel, .channel == "VEOG", "EOGV")
)
}