The main module has been renamed from giottotime
to gtime
. Therefore, now all the imports
should be changed in order to match the new name of the package.
causality_tests
tocausality
shifted_linear_coefficient.py
tolinear_coefficient.py
shifted_pearson_correlation.py
topearson_correlation.py
feature_creation
tofeature_extraction
models
toforecasting
standard_features.py
toexternal.py
calendar_features.py
tocalendar.py
trend_features.py
totrend.py
time_series_features.py
tostandard.py
calendar.py
andexternal.py
tofeature_generation
- Split
TrendForecaster
andDetrender
. Before, theTrendForecaster
was both a predictor and a transformer. To have a more sklearn-like interface, the classes are now splitted and thePolynomialDetrender
andExponentialDetrender
classes have been grouped into theDetrender
class. - The 'y' matrix is now created from the
horizon_shit
function, instead of being created by theFeatureCreation
class. - The
ShiftedPearsonCorrelation
andShitedLinearCoefficient
classes now have the possibility to test shifts starting from a specified value, instead of always testing the shifts starting from 1. - The interface for creating new features through the
FeatureCreation
class has now changed and supports multiple columns as input. - Implementation of
MovingCustomFunction
class, in order to allow the user to apply custom functions with a rolling window. - General improvements in the documentation.
- The topology features are no longer part of giotto-time, but will instead be
implemented in
giotto-tda
. - Removed
giotto-tda
from the requirements.
- Fixed a bug that was causing the
transform
method of theShitedLinearCoefficient
and of theShiftedPearsonCorrelation
classes to shift the time series in the wrong direction. - Fixed some bugs in the documentation.
- Documentation fixes.
- The
ShiftedLinearCoefficient
andShiftedPearsonCorrelation
now can compute the p-values of the test through bootstrapping, in order to check for the significant of the test.
Documentation fixes.
Initial release of giotto-time.