2006-02-14 10:45:11 +01:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
tsplotv - plot time series given in vertical format
|
|
|
|
|
2006-09-30 12:28:19 +02:00
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
tsplotv
|
2012-09-03 12:15:00 +02:00
|
|
|
[--finalresolution dpi]
|
2006-09-30 12:28:19 +02:00
|
|
|
[--legend-position pos]
|
2012-09-03 12:15:00 +02:00
|
|
|
[--log-y]
|
2006-09-30 12:28:19 +02:00
|
|
|
[--output-format format ]
|
|
|
|
[--stacked]
|
|
|
|
[--style style]
|
|
|
|
[file ...]
|
|
|
|
|
2006-02-14 10:45:11 +01:00
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This program expects time series data in vertical format, I.e.,
|
2007-10-11 16:22:40 +02:00
|
|
|
each line contains a tab-separated tripel <time, series, value>.
|
2006-02-14 10:45:11 +01:00
|
|
|
|
2006-09-30 12:28:19 +02:00
|
|
|
The default legend position is "top right", same as with gnuplot.
|
|
|
|
Another frequently useful position (especially if you have lots of series)
|
2007-10-11 16:22:40 +02:00
|
|
|
is "below". Note that positions which consist of several words (such as
|
2006-09-30 12:28:19 +02:00
|
|
|
"top right" need to be passed to tsplotv as a single argument, so the
|
|
|
|
space needs to be hidden from the shell by use of quotes or a backslash.
|
|
|
|
|
|
|
|
The default output format is "png", the default style is "lines".
|
|
|
|
|
|
|
|
See L<TimeSeries> for a description of possible legend positions,
|
|
|
|
output formats, and styles.
|
|
|
|
|
|
|
|
The --stacked option causes the time series to be stacked on top of each
|
|
|
|
other.
|
|
|
|
|
2006-02-14 10:45:11 +01:00
|
|
|
=cut
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use TimeSeries;
|
2006-08-29 10:14:27 +02:00
|
|
|
use Getopt::Long;
|
2006-09-30 12:28:19 +02:00
|
|
|
use Pod::Usage;
|
2006-08-29 10:14:27 +02:00
|
|
|
|
2006-09-30 12:28:19 +02:00
|
|
|
my $help;
|
|
|
|
my $legend_position = 'top right';
|
2006-08-29 10:14:27 +02:00
|
|
|
my $output_format ='png';
|
|
|
|
my $stacked = 0;
|
2006-09-30 12:28:19 +02:00
|
|
|
my $style = "lines";
|
2007-09-06 09:11:14 +02:00
|
|
|
my $log_y =0;
|
2012-09-03 12:15:00 +02:00
|
|
|
my $finalresolution;
|
|
|
|
|
2006-09-30 12:28:19 +02:00
|
|
|
GetOptions('help|?' => \$help,
|
2007-09-06 09:11:14 +02:00
|
|
|
'legend_position|legend-position=s' => \$legend_position,
|
|
|
|
'output_format|output-format=s' => \$output_format,
|
|
|
|
'stacked' => \$stacked,
|
|
|
|
'style:s' => \$style,
|
|
|
|
'log_y|log-y' => \$log_y,
|
2012-09-03 12:15:00 +02:00
|
|
|
'finalresolution' => \$finalresolution,
|
2006-09-30 12:28:19 +02:00
|
|
|
) or pod2usage(2);
|
|
|
|
pod2usage(1) if $help;
|
2006-08-29 10:14:27 +02:00
|
|
|
|
2006-02-14 10:45:11 +01:00
|
|
|
|
|
|
|
binmode STDOUT, ':raw';
|
|
|
|
|
|
|
|
my %series;
|
|
|
|
my $ns;
|
|
|
|
my %data;
|
|
|
|
|
2006-08-29 10:14:27 +02:00
|
|
|
my $ts = TimeSeries->new(output_format => $output_format);
|
2006-02-14 10:45:11 +01:00
|
|
|
while (<>) {
|
|
|
|
chomp;
|
|
|
|
my ($timestamp, $series, $value) = split(/\t/);
|
|
|
|
$series{$series} = ++$ns unless ($series{$series});
|
|
|
|
$data{$timestamp}{$series} = $value;
|
|
|
|
}
|
|
|
|
my @series = sort { $series{$a} <=> $series{$b} } keys %series;
|
|
|
|
$ts->legend(@series);
|
2006-08-29 10:14:27 +02:00
|
|
|
$ts->legend_position($legend_position);
|
|
|
|
$ts->stacked($stacked);
|
2006-09-30 12:28:19 +02:00
|
|
|
$ts->style($style);
|
2007-09-06 09:11:14 +02:00
|
|
|
$ts->log_y($log_y);
|
2012-09-03 12:15:00 +02:00
|
|
|
$ts->finalresolution($finalresolution) if $finalresolution;
|
2006-09-30 12:28:19 +02:00
|
|
|
|
2006-02-14 10:45:11 +01:00
|
|
|
for my $timestamp (sort keys %data) {
|
|
|
|
my %d = %{$data{$timestamp}};
|
|
|
|
my @values = @d{@series};
|
|
|
|
$ts->add_timestring($timestamp, @values);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $g = $ts->plot();
|
|
|
|
print $g
|