Hallo,
ja, ein typischer Fehler mit Copy Paste.
Nun habe ich den den Pfad geändert.
Nun bekomme ich den Fehler:
unzulässiger Parameter 90
anbei der Code:
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
use Chart::Gnuplot;
# Data
my @x = (1,2,3,4,5,6,7,8,9);
my @y = (1,2,3,4,5,6,7,8,9);
# Create chart object and specify the properties of the chart
my $chart = Chart::Gnuplot->new(
output => "C:/Users/Marco/Desktop/simple.jpg",
# title => "Simple testing",
# xlabel => "My x-axis label",
# ylabel => "My y-axis label",
/bin/wgnuplot.exe",
);
# Create dataset object and specify the properties of the dataset
my $dataSet = Chart::Gnuplot::DataSet->new(
xdata => \@x,
ydata => \@y,
# title => "Plotting a line from Perl arrays",
# style => "linespoints",
);
# Plot the data set on the chart
$chart->plot2d($dataSet);
Was bedeutet dieser Code?
Wo kann der Fehler liegen?