plotd 0.5.2

Plot streams of data from the command line.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

Plotcli: Plot streams of data from the command line

Plotcli is a command line application that can create plots from text/csv files. It will ignore any lines it does not understand, so it is safe to use with files that contain non csv data as well. Typically I use it during simulations, where I simulate data, which I pipe to a file and then I plot it using plotcli

plotcli < path/to/file

While new data is coming in it will plot them and save the plot to a file (by default plotcli.png). I then normally use the eye of gnome (eog) to open the plot. The nice thing about eog is that it will keep reloading the updated plot, every time it is being written to. Currently plotcli will keep checking for new data until it is killed with ctrl+c.

Plotcli is meant to be adaptive and will automatically adapt the plot boundaries to encompass all the data.

Installation

git clone http://github.com/BlackEdder/plotd.git
cd plotd
dub build -c plotcli -b release

This will create a binary in bin/plotcli which you can copy anywhere in your path.

Usage:

$ plotcli --help
Usage: plotcli [-f] [-o OUTPUT] [-d FORMAT] [-b BOUNDS] [--xlabel XLABEL] [--ylabel YLABEL]

Plotcli is a plotting program that will plot data from provided data streams (files). It will ignore any lines it doesn't understand, making it possible to feed it \"dirty\" streams/files. All options can also be provided within the stream by using the prefix #plotcli (e.g. #plotcli -d x,y).

Options:
  -f          Follow the stream, i.e. keep listening for new lines.
  -d FORMAT   String describing the content of each row. Different row formats supported: x, y and h, with h indication histogram data. For more information see Data format section.
  -o OUTPUT	  Outputfile (without extension).
  -b BOUNDS   Give specific bounds for the plot in a comma separated list (min_x,max_x,min_y,max_y).
  --xlabel XLABEL
  --ylabel YLABEL

Data format:
  Using -d it is possible to specify what each column in your data file represents. Supported formats are:

  x,y   The x and y coordinate for points
  lx,ly Line data
  h     Histogram data
  hx,hy 2D Histogram data 
  ..	  Extrapolate from previous options, i.e. x,y,.. -> x,y,x,y,..

  Examples: x,y,y or h,x,y. When there are more ys provided than xs (or vice versa) the last x will be matched to all remaining ys.

  Data ids: plotcli by default does a good job of figuring out which x and y data belong together, but you can optionally provide an numeric id to make this completely clear. I.e. x1,y1. Data ids always need to directly follow the format type (before plot ids).

  Plot ids: if you want to plot the data to different figures you can add a letter/name at the end: xa,ya or x1a,y1a. This plot id will be appended to the OUTPUT file name. 

  Extrapolatin (..): plotcli will try to extrapolate from your previous options. This also works for simple plot ids. I.e. if you want a separate histogram for each column: ha,hb,.. results in ha,hb,hc,hd,he etc. Other examples: y,.. -> y,y,y,y etc. x,y,y,.. -> x,y,y,y,y etc.

Examples

See the wiki for examples. All examples in the directories can be run directly from the command line, i.e.

plotcli < examples/1/data.txt

This will create a png file in the current directory.

License

The library is distributed under the GPL-v3 license. See the file COPYING for more details.

Authors:
  • Edwin van Leeuwen
Dependencies:
cairod, docopt, dmocks-revived, tested
Versions:
1.0.1-beta 2016-Sep-13
1.0.0 2016-Aug-19
1.0.0-beta 2016-Aug-19
0.9.1 2016-Jun-06
0.9.0 2016-May-18
Show all 33 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 761 downloads total

Score:
1.6
Short URL:
plotd.dub.pm