File: plotStyle_6.pl

package info (click to toggle)
libchart-gnuplot-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 944 kB
  • sloc: perl: 4,862; makefile: 113
file content (40 lines) | stat: -rwxr-xr-x 887 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/perl -w
use strict;
use Chart::Gnuplot;

my $chart = Chart::Gnuplot->new(
    output => "gallery/plotStyle_6.png",
    title  => "Joining points with steps",
);

# steps and fsteps styles
my @y = (1, 2, 0, 3, 2, -1, 2, 0, 2, 4);
my $line_1 = Chart::Gnuplot::DataSet->new(
    ydata => [@y],
    style => "points",
);
my $steps = Chart::Gnuplot::DataSet->new(
    ydata => [@y],
    style => "steps",
    title => "steps"
);
my $fsteps = Chart::Gnuplot::DataSet->new(
    ydata => [@y],
    style => "fsteps",
    title => "fsteps",
);

# histeps style
@y = (-5, -6, -8, -4, -7, -5, -3, -1, -4);
my $line_2 = Chart::Gnuplot::DataSet->new(
    ydata => [@y],
    style => "points",
);
my $histeps = Chart::Gnuplot::DataSet->new(
    ydata => [@y],
    style => "histeps",
    title => "histeps",
);

# Plot the graph
$chart->plot2d($line_1, $steps, $fsteps, $line_2, $histeps);