Epochs object from numpy array. Parameters ---------- data : array, shape (n_epochs, n_channels, n_times) The channels' time series for each epoch. See notes for proper units of measure. %(info_not_none)s Consider using :func:`mne.create_info` to populate this
| 3700 | |
| 3701 | @fill_doc |
| 3702 | class EpochsArray(BaseEpochs): |
| 3703 | """Epochs object from numpy array. |
| 3704 | |
| 3705 | Parameters |
| 3706 | ---------- |
| 3707 | data : array, shape (n_epochs, n_channels, n_times) |
| 3708 | The channels' time series for each epoch. See notes for proper units of |
| 3709 | measure. |
| 3710 | %(info_not_none)s Consider using :func:`mne.create_info` to populate this |
| 3711 | structure. |
| 3712 | %(events_epochs)s |
| 3713 | %(tmin_epochs)s |
| 3714 | %(event_id)s |
| 3715 | %(reject_epochs)s |
| 3716 | %(flat)s |
| 3717 | %(epochs_reject_tmin_tmax)s |
| 3718 | %(baseline_epochs)s |
| 3719 | Defaults to ``None``, i.e. no baseline correction. |
| 3720 | %(proj_epochs)s |
| 3721 | %(on_missing_epochs)s |
| 3722 | %(metadata_epochs)s |
| 3723 | |
| 3724 | .. versionadded:: 0.16 |
| 3725 | %(selection)s |
| 3726 | %(drop_log)s |
| 3727 | |
| 3728 | .. versionadded:: 1.3 |
| 3729 | %(raw_sfreq)s |
| 3730 | |
| 3731 | .. versionadded:: 1.3 |
| 3732 | %(verbose)s |
| 3733 | |
| 3734 | See Also |
| 3735 | -------- |
| 3736 | create_info |
| 3737 | EvokedArray |
| 3738 | io.RawArray |
| 3739 | |
| 3740 | Notes |
| 3741 | ----- |
| 3742 | Proper units of measure: |
| 3743 | |
| 3744 | * V: eeg, eog, seeg, dbs, emg, ecg, bio, ecog |
| 3745 | * T: mag |
| 3746 | * T/m: grad |
| 3747 | * M: hbo, hbr |
| 3748 | * Am: dipole |
| 3749 | * AU: misc |
| 3750 | |
| 3751 | EpochsArray does not set `Annotations`. If you would like to create |
| 3752 | simulated data with Annotations that are then preserved in the Epochs |
| 3753 | object, you would use `mne.io.RawArray` first and then create an |
| 3754 | `mne.Epochs` object. |
| 3755 | """ |
| 3756 | |
| 3757 | @verbose |
| 3758 | def __init__( |
| 3759 | self, |
no outgoing calls