#!/usr/bin/perl -w use strict; use Chart::Gnuplot; #----------------------------------------------------------- # Demonstrate of styles of combination of box and error bars #----------------------------------------------------------- # Initiate the chart object my $chart = Chart::Gnuplot->new( output => 'plotStyle_10.png', title => 'Box error bar styles', ); # Style of combination of boxes and y error bars my @x = (1, 2, 3, 4, 5, 6); my @y = (5, 4, 3, 2, 1, 0); my @yerr = (0.5, 0.4, 0.1, 0, 0.3, 0.6); my $boxerrorbars = Chart::Gnuplot::DataSet->new( xdata => [@x], ydata => [[@y], [@yerr]], style => 'boxerrorbars', title => 'boxerrorbars', ); # Style of combination of boxes and x-y error bars @y = (7, 6, 5, 4, 3, 2); my @xerr = (0.5, 0.4, 0.2, 0.2, 0.4, 0.7); my $boxxyerrorbars = Chart::Gnuplot::DataSet->new( xdata => [[@x], [@xerr]], ydata => [[@y], [@yerr]], style => 'boxxyerrorbars', title => 'boxxyerrorbars', ); # Plot the graph $chart->plot2d($boxerrorbars, $boxxyerrorbars);