Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print Dumper \@xvalues, \@yvalues;
    
    exit (0);
    
  2. or download this
    #args <- commandArgs(TRUE)
    # This works okay but I would like to replace 10 as a parameter though
    ...
    png(filename="plot.png", bg="transparent")
    plot(x, y)
    dev.off()