View source: R/data_selection.R
select_elecs | R Documentation |
This is a generic function for selection of electrodes from an EEG dataset.
select_elecs(data, ...)
## Default S3 method:
select_elecs(data, electrode = NULL, keep = TRUE, ...)
## S3 method for class 'eeg_data'
select_elecs(data, electrode, keep = TRUE, df_out = FALSE, ...)
## S3 method for class 'eeg_evoked'
select_elecs(data, electrode = NULL, keep = TRUE, df_out = FALSE, ...)
## S3 method for class 'eeg_ICA'
select_elecs(data, component, keep = TRUE, df_out = FALSE, ...)
## S3 method for class 'eeg_tfr'
select_elecs(data, electrode, keep = TRUE, df_out = FALSE, ...)
data |
An EEG dataset. |
... |
Arguments used with related methods |
electrode |
A character vector of electrode labels for selection or removal. |
keep |
Defaults to TRUE. Set to false to remove the selected electrodes. |
df_out |
Defaults to FALSE. Set to TRUE to return a dataframe rather
than an |
component |
Component to select |
Data frame with only data from the chosen electrodes
eeg_data
object with selected electrodes removed/kept.
select_elecs(default)
: Select electrodes from a generic data frame.
select_elecs(eeg_data)
: Select electrodes from a eeg_data
object.
select_elecs(eeg_evoked)
: Select electrode from an eeg_evoked object
select_elecs(eeg_ICA)
: Select components from eeg_ICA
objects.
select_elecs(eeg_tfr)
: Select electrodes from eeg_tfr
objects.
Matt Craddock, matt@mattcraddock.com
select_times()
and select_epochs()
Other Data selection functions:
select_times()
names(demo_epochs$signals)
keep_A5 <- select_elecs(demo_epochs, electrode = "A5")
remove_A5 <- select_elecs(demo_epochs, electrode = "A5", keep = FALSE)
select_elecs(demo_epochs, c("A21", "A29"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.