Implementation of Time-proof Time-series Reduction Algorithm
Project description
Time-proof Time-series Reduction Algorithm
TTRA is a lightweight algorithm reducing a time-series with a time omission.
It has been described in the Master's Thesis.
Example of real-time usage
Usage
import pandas as pd
import matplotlib.pyplot as plt
from ttra import TTRA
# define minimal percentage change that should be detected by TTRA
PCT_CHANGE: float = 0.01
# let's take the inflation in Poland as an example
source: str = "https://stat.gov.pl/download/gfx/portalinformacyjny/pl/defaultstronaopisowa/4741/1/1/miesieczne_wskazniki_cen_towarow_i_uslug_konsumpcyjnych_od_1982_roku_13-05-2022.csv"
# download and process data
inflation = pd.read_csv(source,encoding='ISO-8859-2',sep=';').sort_values(['Rok','Miesišc'])
inflation = inflation[inflation['Sposób prezentacji'] == 'Analogiczny miesišc poprzedniego roku = 100']
inflation = inflation['Wartoć'].dropna().map(lambda x: x.replace(',','.')).astype(float)
inflation = inflation.iloc[-12*25:].reset_index(drop=True) # last 25 years only to not obscure the newest data
# initiate TTRA and reduce data with a given PCT_CHANGE
tr = TTRA(inflation)
reduced = tr.reduce(PCT_CHANGE)
# plot data, reduced data and an assumption of the current extremum
fig, ax = plt.subplots()
inflation.plot(ax=ax)
reduced.plot(ax=ax)
plt.scatter(tr.a.Index, tr.a.x, s= 150 , color='black')
Output
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ttra-0.1.1.tar.gz
(3.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
ttra-0.1.1-py3-none-any.whl
(3.9 kB
view details)
File details
Details for the file ttra-0.1.1.tar.gz.
File metadata
- Download URL: ttra-0.1.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fab3822c6d2aa5aa6da766a231bd3b38ae772f639481e70b408b682b635eea91
|
|
| MD5 |
d7835782af141d570bf1c67a07511ac1
|
|
| BLAKE2b-256 |
c397c5a8318e0c8fb2af4c748b18d697e52ec3aee53d827ee2da8c2deefaa868
|
File details
Details for the file ttra-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ttra-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7d2ebe2d08852cde9be775afe537c55b13dad1c0b4798aecd39e4eb4e2458d6
|
|
| MD5 |
8ff864ba17eef39268b67aa0e1c97b27
|
|
| BLAKE2b-256 |
c5596151fadbc1b048a8e97d14c57fbccc09a9b544d15dab6e9309960a61f07f
|