Lab::Data::Plotter - Plot data with Gnuplot
use Lab::Data::Plotter;
my $plotter=new Lab::Data::Plotter($metafile);
my %plots=$plotter->available_plots();
my @names=keys %plots;
$plotter->plot($names[0]);
This module can plot data with GnuPlot. It plots data from .DATA files and takes into account the data information in the corresponding .META file.
The module also offers the possibility to plot data live, while it is being aquired.
$plotter=new Lab::Data::Plotter($meta,\%options);
Creates a Plotter object. $meta is either an object of type Lab::Data::Meta or a filename that points to a .META file.
Available options are
my %plots=$plotter->available_plots();
$plotter->plot($plot);
$plotter->start_live_plot($plot);
$plotter->update_live_plot();
$plotter->stop_live_plot();
This is $Id$
Copyright 2004-2006 Daniel Schröer (http://www.danielschroeer.de)
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.