Python Package for automated multivariate Time Series imputation
Project description
TimeWeaver: Automated time series imputation 
TimeWeaver is a Python library designed for multivariate time series data analysis, specifically addressing the challenges of machine process environmental data. It focuses on overcoming incomplete datasets due to sensor errors by employing various tailored imputation techniques. This ensures the integrity and relevance of data, catering to the unique characteristics of different features, such as discrepancies between power consumption and temperature curves.
TimeWeaver provides insightful graphics and analyses, enabling effective tool selection for specific data challenges, making it a valuable asset for data scientists and analysts. Additionally, it is evolving to offer a customizable Preprocessor model, facilitating the integration of optimal imputation methods into existing data processing pipelines for automated and enhanced data preparation.
Disclaimer
The currently implementation methods are based on the provided functions by numpy / scipy. The package logo was generated by ChatGPT 4.0 on 09.03.2024. The project is still in the early stages of development and thereby not yet suitable for production environments, it's meant solely for testing and experimentation.
Quickstart
The following example uses the Beijing PM25 Data Set to show the functionalities of the library.
from timeweaver.timeweaver import TimeWeaver
from timeweaver.datasets import DataSets
dataframe = DataSets.PRSA()
interpolator = TimeWeaver(dataframe[0:1000], tracking_column="No")
interpolator.evaluate()
print(interpolator.get_best(optimized_selection=True))
[('year', 'akima'), ('month', 'akima'), ('day', 'akima'), ('hour', 'akima'), ('pm2.5', 'akima'), ('DEWP', 'from_derivatives'), ('TEMP', 'akima'), ('PRES', 'akima'), ('Iws', 'akima'), ('Is', 'from_derivatives'), ('Ir', 'akima')]
PreProcessor = interpolator.build_PreProcessor()
PreProcessor.transform(dataframe)
Structure
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file TimeWeaver-0.1.7.28.tar.gz.
File metadata
- Download URL: TimeWeaver-0.1.7.28.tar.gz
- Upload date:
- Size: 514.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a10e4e07a9c2d78bed188139b32bf46ca1546e07c143987acc816e24ad34d74
|
|
| MD5 |
c04720c123ee26e9690166fa857b78ee
|
|
| BLAKE2b-256 |
b89eb8c3ed67accd81bb79a37aff901bd5d8a1bf7fbcae06c29b1b603decb050
|