- raw : mne.io.Raw
Raw input file.
- raw_event : mne.io.Raw or None
Raw file to use for event detection (if None, raw is used).
- tmin : float
Time before event in seconds.
- tmax : float
Time after event in seconds.
- n_grad : int
Number of SSP vectors for gradiometers.
- n_mag : int
Number of SSP vectors for magnetometers.
- n_eeg : int
Number of SSP vectors for EEG.
- l_freq : float | None
Filter low cut-off frequency for the data channels in Hz.
- h_freq : float | None
Filter high cut-off frequency for the data channels in Hz.
- average : bool
Compute SSP after averaging. Default is False in 0.16 but will change
to True in 0.17.
- filter_length : str | int | None
Number of taps to use for filtering.
- n_jobs : int
Number of jobs to run in parallel.
- ch_name : string (or None)
Channel to use for ECG detection (Required if no ECG found).
- reject : dict | None
Epoch rejection configuration (see Epochs).
- flat : dict | None
Epoch flat configuration (see Epochs).
- bads : list
List with (additional) bad channels.
- avg_ref : bool
Add EEG average reference proj.
- no_proj : bool
Exclude the SSP projectors currently in the fiff file.
- event_id : int
ID to use for events.
- ecg_l_freq : float
Low pass frequency applied to the ECG channel for event detection.
- ecg_h_freq : float
High pass frequency applied to the ECG channel for event detection.
- tstart : float
Start artifact detection after tstart seconds.
- qrs_threshold : float | str
Between 0 and 1. qrs detection threshold. Can also be “auto” to
automatically choose the threshold that generates a reasonable
number of heartbeats (40-160 beats / min).
- filter_method : str
Method for filtering (‘iir’ or ‘fft’).
- iir_params : dict | None
Dictionary of parameters to use for IIR filtering.
See mne.filter.construct_iir_filter for details. If iir_params
is None and method=”iir”, 4th order Butterworth will be used.
- copy : bool
If False, filtering raw data is done in place. Defaults to True.
- return_drop_log : bool
If True, return the drop log.
- verbose : bool, str, int, or None
If not None, override default verbose level (see mne.verbose()
and Logging documentation for more).