Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bdelbosc/tcsv2png
Data visualization of csv data with a time column.
https://github.com/bdelbosc/tcsv2png
Last synced: 4 days ago
JSON representation
Data visualization of csv data with a time column.
- Host: GitHub
- URL: https://github.com/bdelbosc/tcsv2png
- Owner: bdelbosc
- License: gpl-2.0
- Created: 2011-04-14T07:27:48.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-09T21:52:21.000Z (over 13 years ago)
- Last Synced: 2024-10-31T20:43:13.934Z (14 days ago)
- Language: Python
- Homepage:
- Size: 109 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
===========
tcsv2png
===========NAME
----
tcsv2png - data visualization of csv data with a time column.SYNPSIS
-------::
tcsv2png [Options] CSV_FILE [COL0 [COLi ...]]
DESCRIPTION
-----------tcsv2png uses gnuplot to convert a csv file with a time column
(HH:MM:SS format) into a png chart.It scales the data to show all of the data sets in the same png
chart.You can select the columns of interest. You can customize the
generated gnuplot script to your need.CSV_FILE: a csv file with TAB or semicolon fields separator
COL0: the column indice that contains the time formated H:M:S
COLi: column indice to plotNote that column indice starts with 0 and that the first line
should contains columns headers.REQUIRES
--------
tcsv2png requires `gnuplot `_.INSTALLATION
------------
::sudo easy_install tcsv2png
EXAMPLES
--------You can view some screenshots in the `tcsv2png wiki
`_tcsv2png data.csv
Creates data.png file with all the columns, assuming
column 0 is the time column.tcsv2png -v -c -t "Foo title" -o foo.png data.csv 0 3 5
Creates foo.png chart with "Foo title" title, column 0 is
the time column, plotting column 3 and 5 using smooth
csplines rendering.tcsv2png -h
Gives you the available options.