- X : array-like, shape (n_epochs, n_channels, n_times)
The time series data consisting of n_epochs separate observations
of signals with n_channels time-series of length n_times.
- sfreq : float
Sampling frequency of observations.
- t0 : float
Time of the first sample relative to the onset of the epoch, in
seconds. Defaults to 0.
- fmin : float
Minimum frequency of interest, in Hertz.
- fmax : float | np.inf
Maximum frequency of interest, in Hertz.
- tmin : float | None
Minimum time instant to consider, in seconds. If None
start at
first sample.
- tmax : float | None
Maximum time instant to consider, in seconds. If None
end at last
sample.
- ch_names : list of str | None
A name for each time series. If None
(the default), the series will
be named ‘SERIES###’.
- n_fft : int | None
Length of the FFT. If None
, the exact number of samples between
tmin
and tmax
will be used.
- projs : list of Projection | None
List of projectors to store in the CSD object. Defaults to None
,
which means no projectors are stored.
- n_jobs : int
Number of jobs to run in parallel. Defaults to 1.
- verbose : bool | str | int | None
If not None
, override default verbose level
(see mne.verbose()
and Logging documentation
for more).