- 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.
- 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.
- eog_l_freq : float
Low pass frequency applied to the E0G channel for event detection.
- eog_h_freq : float
High pass frequency applied to the EOG channel for event detection.
- tstart : float
Start artifact detection after tstart seconds.
- 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.
- ch_name: str | None
If not None, specify EOG channel name.
- 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).