tsfresh icon indicating copy to clipboard operation
tsfresh copied to clipboard

Automatic extraction of relevant features from time series:

Results 87 tsfresh issues
Sort by recently updated
recently updated
newest added

Hi, I get an assertion error when using the fuction extract_relevant_features(). When I print len(X) and len(y), I get the same values. - Python version: 3.8.5 - tsfresh version: 0.19.0...

bug

**The problem**: When I tried to apply `extract_features`, it produced duplicated columns. My script is like below, ```python: extract_features(timeseries, column_id="id", column_sort="time") ``` (I am sorry not to show the data...

bug

**The problem**: This is my code. ``` import pandas as pd from tsfresh import extract_features from tsfresh.feature_extraction import ( ComprehensiveFCParameters ) import multiprocessing rolled = pd.read_csv('rolled.csv', index_col=0, parse_dates=['time']) rolled.set_index("time", inplace=True)...

bug

CODE (using pyspark) ERROR pip freeze **Environment**: - Python version: 3.6 - Operating System: windows 10 - tsfresh version: 0.18.0 - Install method (conda, pip, source): pip

bug

*tsfresh 0.18.0* This works: ```python import pandas as pd import tsfresh from tsfresh.feature_extraction import feature_calculators from tsfresh.feature_extraction.feature_calculators import set_property @set_property("fctype", "simple") def f(x): return 2 def main(): df = pd.DataFrame({"time":...

bug

Generally speaking, I'm trying to extract features using extract_features from a timeseries using tsfresh.utilities.dataframe_functions.make_forecasting_frame. I encountered an unexpected exception, which I was able to reproduce using a similar example from...

bug

Hi Team, I tried testing **tsfresh** package on Arm64 architectures but it is generating `24 errors with 10 passed and 11 skipped` for the **tox test command** with the below...

bug

Hi, I seem to be getting an import error when trying to use tsfresh after pip installing to python 3.10.0. I have attached a screenshot of the issue. ![image](https://user-images.githubusercontent.com/79952181/161903374-a9f157d4-09d1-44a5-b29a-58e3fb172f43.png) tsfresh...

bug

I am a newbie of tsfresh, so sorry if I misunderstood something. **The problem**: I encountered an exception in the following tutorial. "Rolling/Time series forecasting" https://tsfresh.readthedocs.io/en/latest/text/forecasting.html The reproduction procedure is...

bug

### Discussed in https://github.com/blue-yonder/tsfresh/discussions/923 Originally posted by **utkarshtri1997** January 20, 2022 Hi, Firstly Thank you for building this good application for time-series calculation. Can you please help me in adding...