Converting time-series to graph using three different method which are natural visibility graph, horizontal visibility graph, and quantile graph
Project description
ts2g (time series to graph)
This a package for converting timeseries to graph using three different method which are natural visibility graph, horizontal visibility graph and quantile graph this three methods are come from the following articels:
Lacasa, Lucas, Bartolo Luque, Fernando Ballesteros, Jordi Luque, and Juan Carlos Nuño. 2008. “From Time Series to Complex Networks: The Visibility Graph.” Proceedings of the National Academy of Sciences of the United States of America 105 (13): 4972–75.
Luque, B., Lacasa, L., Ballesteros, F. and Luque, J., 2009. Horizontal visibility graphs: Exact results for random time series. Physical Review E, 80(4).
Campanharo, A., Sirer, M., Malmgren, R., Ramos, F. and Amaral, L., 2011. Duality between Time Series and Networks. PLoS ONE, 6(8), p.e23378.
Dependencies:
openpyxl
How to install package:
- install python > 3.6 how to install?
- install pip how to install?
- open terminal (linux or mac) or command prompt (windows):
to open terminal if you are using mac: 1. Press Command + Space Bar on your Mac Keyboard. 2. Type in “Terminal” 3. When you see Terminal in the Spotlight search list, click it to open the app.
to open command prompt if you are using windows: 1. right-click the Windows icon in the bottom-left corner of your screen. 2. click on powershell(admin) or command prompt(admin)
- and then enter this command
pip install openpyxl && pip install ts2g
and hit enter! done.
How to import:
import ts2g
How to use:
#import your data! data should be .csv or .xlsx file
#for example:
data = ts2g.importData("data.csv") # this function will return a matrix of data
#replace you data file with data.csv
#then calculate the data:
#for vertical visibility graph, example:
result = ts2g.vg(data) # this function will return a matrix of results
#for horisantal visibility graph, example:
result = ts2g.hg(data) # this function will return a matrix of results
#for quantile graph, example:
q = 10
result = ts2g.qg(data, q) # this function will return a matrix of results
#then save result!
ts2g.save(result, "name") #this funtion will save results in .txt files!
How saved files are look like:
if result is for vg, saved files will be:
- name_A_vg.txt
- name_graph_indicator_vg.txt
- name_node_labels_vg.txt
if result is for hg, saved files will be:
- name_A_hg.txt
- name_graph_indicator_hg.txt
- name_node_labels_hg.txt
if result is for qg, saved files will be:
- name_A_qg_q=10.txt
- name_graph_indicator_qg_q=10.txt
- name_node_labels_qg_q=10.txt
- name_edge_labels_qg_q=10.txt
note:
We strongly suggest using .csv, don't use .xlsx for big files!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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
File details
Details for the file ts2g-0.0.2.2-py3-none-any.whl.
File metadata
- Download URL: ts2g-0.0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
042deea9247db0a87a24511dc47940edb52cd9afa08a28d8a31c7ea0cfba261c
|
|
| MD5 |
280794df94cb052e6a5624c39c3e20b6
|
|
| BLAKE2b-256 |
9a38b08601367a6bf7ecd1122c216e3ff02ce0f8ff0088784a7225cdccc56f5b
|