Skip to main content

A package to turn timeseries into graphs and graphs into timeseries

Project description

ts2g2

TS2G2 stands for "timeseries to graphs and back". The library implements a variety of strategies to convert timeseries into graphs, and convert graphs into sequences. Below, we provide a code snippet to generate a graph from timeseries:

# load time series from a file
timegraph = Timeseries(CsvStock(some_file_path, "ColumnOfInterest").from_csv())\

# and preprocess the timeseries with multiple preprocessing strategies
.with_preprocessing(TimeseriesPreprocessingComposite()\
    .add_strategy(TimeseriesPreprocessingSegmentation(60, 120))\
    .add_strategy(TimeseriesPreprocessingSlidingWindow(5)))\

# then create a graph from the timeseries, following a particular strategy
.to_graph(BuildTimeseriesToGraphNaturalVisibilityStrategy().get_strategy())\

# link graphs that result from the same timeseries, but at different sliding window frames
.link(LinkGraphs().sliding_window())\

# and combine identical graphs that result from the abovementioned time windows into single nodes
.combine_identical_nodes_slid_win()\

# finally, draw the graph
.draw("red")

For a more detailed example, look at the Amazon stocks demo.

Many of the methods implemented in this library are described in Silva, Vanessa Freitas, et al. "Time series analysis via network science: Concepts and algorithms." Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery 11.3 (2021): e1404. Nevertheless, the library also includes additional techniques found in other works from the scientific literature.

This package is being developed as part of the Graph-Massivizer project. The package is a joint effort between the Jožef Stefan Institute, the University of Twente, the Vrije Universiteit Amsterdam, the University of Klagenfurt, the University of Bologna, and Peracton.

Timeseries to graph conversion

Implemented features

# Visibility Graph Graph type Constraints
Undirected Directed Weighted
Penetration Angle
1 Natural Visibility Graph X X X X X
2 Horizontal Visibility Graph X X X X X
3 Difference Visibility Graph
4 Quantile Graph X X
5 Ordinal Partition Graph X X

References table

# Visibility Graph Graph type Constraints
Undirected Directed Weighted
Penetration Angle
1 Natural Visibility Graph ref ref ref ref, ref
2 Horizontal Visibility Graph ref ref ref ref, ref
3 Difference Visibility Graph
4 Quantile Graph ref
5 Ordinal Partition Graph

Graphs to timeseries conversion

Graphs are converted back to timeseries by sampling node values from the graph following different strategies. Below, we provide a short snippet of code, to illustrate how this can be done.

timegraph.to_sequence(ToSequenceVisitorSlidingWindow()\
.next_node_strategy(StrategySelectNextNodeRandomlyFromFirstGraph())\
.next_value_strategy(StrategyNextValueInNodeRandomForSlidingWindow().skip_every_x_steps(1))\
.ts_length(50))\
.draw_sequence()

When choosing the next node, the following strategies have been implemented so far: random node, random node neighbour, random node degree, random walk, random walk with restart, random walk with jump.

Publications

When using this work for research purposes, we would appreciate it if the following references could be included:

Below we provide a curated list of papers related to our research in this area:

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

ts2g2-0.1.0.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ts2g2-0.1.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file ts2g2-0.1.0.tar.gz.

File metadata

  • Download URL: ts2g2-0.1.0.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for ts2g2-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1820c425d494e4d50b6f0a2cbbcdb0806e0d43d312bb65c4dc4acceebe544f2a
MD5 fa6cd1f36f5e19c3f32259305272e9df
BLAKE2b-256 adf03e2dccb55dc0ad33ceca3426cf271760cd6681cb4f790cec558a79f509dc

See more details on using hashes here.

File details

Details for the file ts2g2-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ts2g2-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for ts2g2-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a0c8d7b3a645d678ae7313b49d169b0e3dbc8f26e7a28bd43311b17b0035520
MD5 2d5ee0d40ea779ee3238e25728db08e4
BLAKE2b-256 55e89d4c3801bd28645eb6ce6c67266ea5818d165a893bc5737c20d15c93fb48

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page