tsfresh
, check out the example below:from tsfresh.feature_extraction import MinimalFCParameters; import scipy.stats as ss from tsflex.features import FeatureCollection, MultipleFeatureDescriptors from tsflex.features.integrations import tsfresh_settings_wrapper from tsflex.utils.data import load_empatica_data # Load sequence-indexed data (in this case a time-index) df_tmp, df_acc = load_empatica_data(['tmp', 'acc']) # Construct your feature extraction configuration & extract features fc = FeatureCollection( MultipleFeatureDescriptors( functions=tsfresh_settings_wrapper(MinimalFCParameters()) + [ss.skew], series_names=["TMP", "ACC_x", "ACC_y"], windows=["5min", "15min"], strides="5min" ) ) fc.calculate(data=[df_tmp, df_acc], return_df=True)
bound_method
argument to FeatureCollection.calculate()RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4