channels_tbl | R Documentation |
Functions to get or set the channel information of an eeg_lst object.
channels_tbl(.data, ...)
channels_tbl(.data) <- value
.data |
An eeg_lst object. |
... |
Not in use. |
value |
A channel table. |
A table.
Other functions to expose internal parts of eeg_(ica_)_lst:
events_tbl()
,
ica_matrix_lst()
,
segments_tbl()
,
signal_tbl()
## Not run:
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")
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.