Releases: pynapple-org/pynapple
Releases · pynapple-org/pynapple
V0.7.1
V0.7.0
- Morlet wavelets spectrogram with utility for plotting the wavelets.
- (Mean) Power spectral density. Returns a Pandas DataFrame.
- Convolve function works for any dimension of time series and any dimensions of kernel.
dtype
in count functionget_slice
: public method with a simplified API, argument start, end, time_units. returns a slice that matches behavior of Base.get._get_slice
: private method, adds the argument "mode" this can be: "after_t", "before_t", "closest_t", "restrict".split
method for IntervalSet. Argument isinterval_size
in time unit.- Changed os import to pathlib.
- Fixed pickling issue. TsGroup can now be saved as pickle.
- TsGroup can be created from an iterable of Ts/Tsd objects.
- IntervalSet can be created from (start, end) pairs
V0.6.6
V0.6.5
V0.6.4
V0.6.3
V0.6.2
v0.6.1
v0.6.0
- Refactoring
IntervalSet
to pure numpy ndarray. - Implementing new chain of inheritance for time series with abstract base class.
base_class.Base
holds the temporal methods for all time series andTs
.time_series.BaseTsd
inheritBase
and implements the common methods forTsd
,TsdFrame
andTsd
. - Automatic conversion to numpy ndarray for all objects that are numpy-like (typically jax).