A Python library for unevenly-spaced time series analysis
Project description
A Python library for unevenly-spaced time series analysis. Greatly inspired by traces.
Get Started Notebook.
Usage
from ticts import TimeSeries
ts = TimeSeries({
'2019-01-01': 1,
'2019-01-01 00:10:00': 2,
'2019-01-01 00:11:00': 3,
})
assert ts['2019-01-01 00:05:00'] == 1
ts['2019-01-01 00:04:00'] = 10
assert ts['2019-01-01 00:05:00'] == 10
assert ts + ts == 2 * ts
from datetime import timedelta
onemin = timedelta(minutes=1)
ts_evenly_spaced = ts.sample(freq=onemin)
# if pandas installed:
df = ts.to_dataframe()
Installation
pip install ticts
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
ticts-0.2.4.tar.gz
(131.4 kB
view hashes)
Built Distribution
ticts-0.2.4-py2.py3-none-any.whl
(10.4 kB
view hashes)
Close
Hashes for ticts-0.2.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca3e23c171cf30905257213f6f47da2a7e092a6c13bf5b2740f55bdbd8165885 |
|
MD5 | 54cda5fd2b294e2bde27ebd0432cdbfa |
|
BLAKE2b-256 | 0781b447dd4f7f79800a32604d527d540a159c9caf3386f25982890b4dbc8e6a |