![]() |
Multivariate Pattern Analysis in Python |
Inheritance diagram for mvpa.datasets.channel:
Dataset handling data structured in channels.
Bases: mvpa.datasets.mapped.MappedDataset
Dataset handling data structured into channels.
Channels are assumes to contain several timepoints, thus this Dataset stores some additional properties (reference time t0, temporal distance of two timepoints dt and channelids (names)).
Initialize ChannelDataset.
| Parameters: |
|
|---|
List of channel IDs
Time difference between two samples (in seconds).
Convenience method to resample data sample channel-wise.
Resampling target can be specified by number of timepoint or temporal distance or sampling rate.
Please note that this method only operates on ChannelDataset and always returns such.
| Parameters: |
|
|---|---|
| Return : | ChannelDataset |
Yeah, sampling rate.
Substract mean baseline signal from the each timepoint.
The baseline is determined by computing the mean over all timepoints specified by t.
The samples of the dataset are modified in-place and nothing is returned.
| Parameters: | t (int | float | None) – If an integer, t denotes the number of timepoints in the from the start of each sample to be used to compute the baseline signal. If a floating point value, t is the duration of the baseline window from the start of each sample in whatever unit corresponding to the datasets samplingrate. Finally, if None the t0 property of the dataset is used to determine t as it would have been specified as duration. |
|---|
Temporal position of first sample in the timeseries (in seconds) – possibly relative to stimulus onset.