timeseries/tsplotv

124 lines
3.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/perl
=head1 NAME
tsplotv - plot time series given in vertical format
=head1 SYNOPSIS
tsplotv
[--finalresolution dpi]
[--legend-position pos]
[--log-y]
[--output-format format ]
[--stacked]
[--style style]
2016-04-21 17:17:33 +02:00
[--time_t]
[--colors rgb-list]
[--configfile yaml]
[file ...]
=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>.
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
"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.
=cut
use v5.20;
use warnings;
use experimental qw(postderef);
use TimeSeries;
use Getopt::Long;
use Pod::Usage;
2016-04-21 17:17:33 +02:00
use YAML qw(LoadFile);
my $help;
my $legend_position = 'top right';
2014-09-18 14:38:57 +02:00
my $output_format = 'png';
my $stacked = 0;
my $style = "lines";
2014-09-18 14:38:57 +02:00
my $log_y = 0;
my $finalresolution;
2014-09-18 14:38:57 +02:00
my $time_t = 0;
my $colors;
2016-04-21 17:17:33 +02:00
my $configfile;
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,
'finalresolution=i' => \$finalresolution,
2012-09-03 13:42:04 +02:00
'time_t' => \$time_t,
2014-09-18 14:38:57 +02:00
'colors=s' => \$colors,
2016-04-21 17:17:33 +02:00
'configfile=s' => \$configfile,
) or pod2usage(2);
pod2usage(1) if $help;
2016-04-21 17:17:33 +02:00
my $config = LoadFile($configfile) if $configfile;
binmode STDOUT, ':raw';
2016-04-21 17:17:33 +02:00
my $ns = 0;
my %data;
2016-04-21 17:17:33 +02:00
$config->{timeseries} //= {};
2017-12-14 03:28:46 +01:00
for (keys $config->{timeseries}->%*) {
2016-04-21 17:17:33 +02:00
$ns = $config->{timeseries}{$_}{order} if ($config->{timeseries}{$_}{order} // 0) > $ns;
}
while (<>) {
chomp;
my ($timestamp, $series, $value) = split(/\t/);
2016-04-21 17:17:33 +02:00
$config->{timeseries}{$series}{order} = ++$ns unless ($config->{timeseries}{$series}{order});
$data{$timestamp}{$series} = $value;
}
2016-04-21 17:17:33 +02:00
my @series = sort { $config->{timeseries}{$a}{order} <=> $config->{timeseries}{$b}{order} }
2017-12-14 03:28:46 +01:00
keys $config->{timeseries}->%*;
2016-04-21 17:17:33 +02:00
if ($colors) {
my @colors = split(/,/, $colors);
while (my ($i, $c) = each(@colors)) {
$config->{timeseries}{$series[$i]}{color} = $c;
}
}
my $ts = TimeSeries->new(output_format => $output_format);
$ts->legend(@series);
$ts->legend_position($legend_position);
$ts->stacked($stacked);
$ts->style($style);
2007-09-06 09:11:14 +02:00
$ts->log_y($log_y);
$ts->finalresolution($finalresolution) if $finalresolution;
2016-04-21 17:17:33 +02:00
$ts->colors(map $config->{timeseries}{$_}{color}, @series);
for my $timestamp (sort keys %data) {
my %d = %{$data{$timestamp}};
my @values = @d{@series};
2012-09-03 13:42:04 +02:00
if ($time_t) {
$ts->add($timestamp, @values);
} else {
$ts->add_timestring($timestamp, @values);
}
}
my $g = $ts->plot();
print $g