tangetools/plotpipe
2020-12-12 02:02:25 +01:00
..
example1.csv plotpipe: Updated to support >3 columns, titles, and headers. 2020-10-05 23:48:16 +02:00
example2.csv plotpipe: Updated to support >3 columns, titles, and headers. 2020-10-05 23:48:16 +02:00
example3.csv plotpipe: Updated to support >3 columns, titles, and headers. 2020-10-05 23:48:16 +02:00
example4.csv plotpipe: Updated to support >3 columns, titles, and headers. 2020-10-05 23:48:16 +02:00
example5.csv plotpipe: Updated to support >3 columns, titles, and headers. 2020-10-05 23:48:16 +02:00
example6.csv plotpipe: 1D data supported. 2020-10-26 20:01:14 +01:00
plotpipe tracefile fixed: https://gitlab.com/ole.tange/tangetools/-/issues/9 2020-12-12 02:02:25 +01:00
README plotpipe: Added README. 2020-12-04 18:33:50 +01:00

			       PLOTPIPE

		      - plot data from a pipe -


URL: https://gitlab.com/ole.tange/tangetools/-/tree/master/plotpipe

We have all been there: You have a bunch of data from a pipe that you
would like to get a better understanding of.

You know you can plot them by saving the data to a file, opening the
file in a spreadsheet, and making a graph; but it is just too much
bother because you do not need a fancy graph: You just need a quick
graph based on the data, and spending 5 minutes on generating that
graph is just too much hassle.

Plotpipe is designed for this situation.

Plotpipe reads data from a pipe (or a file) and plots it. If the input
is a CSV-file it tries to autodetect the separator and whether there
is a column header. It assumes the first column is the x-axis and that
all other columns are data series. If there is only a single
column, the line number is treated as the x-axis.

Examples:

    seq 1 100 | plotpipe
    seq 1 100 | shuf | plotpipe
    paste <(seq 1 100) <(seq 1 100) <(seq 1 100 | shuf) | plotpipe
    (echo "#Title"; echo "#Subtitle";
     echo "Column1 Column2 Column3";
     paste <(seq 1 100) <(seq 1 100) <(seq 1 100 | shuf) ) | plotpipe

Copyright (C) 2020 Ole Tange, http://ole.tange.dk and Free Software
Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU plotpipe comes with no warranty.