RosettaCodeData/Task/Plot-coordinate-pairs/Perl-6/plot-coordinate-pairs.pl6

16 lines
341 B
Raku
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
use SVG;
use SVG::Plot;
2018-06-22 20:57:24 +00:00
my @x = 0..9;
2013-04-10 23:57:08 -07:00
my @y = (2.7, 2.8, 31.4, 38.1, 58.0, 76.2, 100.5, 130.0, 149.3, 180.0);
2018-06-22 20:57:24 +00:00
say SVG.serialize: SVG::Plot.new(
2013-04-10 23:57:08 -07:00
width => 512,
height => 512,
x => @x,
x-tick-step => { 1 },
2018-06-22 20:57:24 +00:00
min-y-axis => 0,
values => [@y,],
2013-04-10 23:57:08 -07:00
title => 'Coordinate Pairs',
2020-02-17 23:21:07 -08:00
).plot(:lines);