gitextract_1ae_uw_y/ ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── config.yml │ └── workflows/ │ ├── benchmark_default_branch.yml │ ├── deploy.yml │ ├── stylecheck.yml │ ├── test.yml │ └── test_all.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGES.rst ├── Dockerfile ├── Dockerfile.testing ├── LICENSE.txt ├── Makefile ├── README.md ├── binder/ │ └── requirements.txt ├── docs/ │ ├── Makefile │ ├── _static/ │ │ ├── .gitignore │ │ └── theme_override.css │ ├── _templates/ │ │ └── module_functions_template.rst │ ├── api/ │ │ ├── modules.rst │ │ ├── tsfresh.convenience.rst │ │ ├── tsfresh.examples.rst │ │ ├── tsfresh.feature_extraction.rst │ │ ├── tsfresh.feature_selection.rst │ │ ├── tsfresh.rst │ │ ├── tsfresh.scripts.rst │ │ ├── tsfresh.transformers.rst │ │ └── tsfresh.utilities.rst │ ├── authors.rst │ ├── changes.rst │ ├── conf.py │ ├── images/ │ │ └── rolling_mechanism_drawio_template.xml │ ├── index.rst │ ├── license.rst │ └── text/ │ ├── data_formats.rst │ ├── faq.rst │ ├── feature_calculation.rst │ ├── feature_extraction_settings.rst │ ├── feature_filtering.rst │ ├── forecasting.rst │ ├── how_to_add_custom_feature.rst │ ├── how_to_contribute.rst │ ├── introduction.rst │ ├── large_data.rst │ ├── list_of_features.rst │ ├── quick_start.rst │ ├── sklearn_transformers.rst │ └── tsfresh_on_a_cluster.rst ├── notebooks/ │ ├── 01 Feature Extraction and Selection.ipynb │ ├── 02 sklearn Pipeline.ipynb │ ├── 03 Feature Extraction Settings.ipynb │ ├── 04 Multiclass Selection Example.ipynb │ ├── 05 Timeseries Forecasting.ipynb │ ├── advanced/ │ │ ├── 05 Timeseries Forecasting (multiple ids).ipynb │ │ ├── compare-runtimes-of-feature-calculators.ipynb │ │ ├── feature_extraction_with_datetime_index.ipynb │ │ ├── friedrich_coefficients.ipynb │ │ ├── inspect_dft_features.ipynb │ │ ├── perform-PCA-on-extracted-features.ipynb │ │ └── visualize-benjamini-yekutieli-procedure.ipynb │ └── pipeline.pkl ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── benchmark.py │ ├── fixtures.py │ ├── integrations/ │ │ ├── __init__.py │ │ ├── examples/ │ │ │ ├── __init__.py │ │ │ ├── test_driftbif_simulation.py │ │ │ ├── test_har_dataset.py │ │ │ └── test_robot_execution_failures.py │ │ ├── test_bindings.py │ │ ├── test_feature_extraction.py │ │ ├── test_full_pipeline.py │ │ ├── test_notebooks.py │ │ └── test_relevant_feature_extraction.py │ └── units/ │ ├── __init__.py │ ├── feature_extraction/ │ │ ├── __init__.py │ │ ├── test_data.py │ │ ├── test_extraction.py │ │ ├── test_feature_calculations.py │ │ └── test_settings.py │ ├── feature_selection/ │ │ ├── __init__.py │ │ ├── test_checks.py │ │ ├── test_fdr_control.py │ │ ├── test_feature_significance.py │ │ ├── test_relevance.py │ │ ├── test_selection.py │ │ └── test_significance_tests.py │ ├── scripts/ │ │ ├── __init__.py │ │ └── test_run_tsfresh.py │ ├── transformers/ │ │ ├── __init__.py │ │ ├── test_feature_augmenter.py │ │ ├── test_feature_selector.py │ │ ├── test_per_column_imputer.py │ │ └── test_relevant_feature_augmenter.py │ └── utilities/ │ ├── __init__.py │ ├── test_dataframe_functions.py │ ├── test_distribution.py │ └── test_string_manipilations.py └── tsfresh/ ├── __init__.py ├── convenience/ │ ├── __init__.py │ ├── bindings.py │ └── relevant_extraction.py ├── defaults.py ├── examples/ │ ├── __init__.py │ ├── driftbif_simulation.py │ ├── har_dataset.py │ └── robot_execution_failures.py ├── feature_extraction/ │ ├── __init__.py │ ├── data.py │ ├── extraction.py │ ├── feature_calculators.py │ └── settings.py ├── feature_selection/ │ ├── __init__.py │ ├── relevance.py │ ├── selection.py │ └── significance_tests.py ├── scripts/ │ ├── __init__.py │ ├── data.txt │ ├── measure_execution_time.py │ ├── run_tsfresh.py │ └── test_timing.py ├── transformers/ │ ├── __init__.py │ ├── feature_augmenter.py │ ├── feature_selector.py │ ├── per_column_imputer.py │ └── relevant_feature_augmenter.py └── utilities/ ├── __init__.py ├── dataframe_functions.py ├── distribution.py ├── profiling.py └── string_manipulation.py