Help for this page

Select Code to Download


  1. or download this
    my $command = q`a<-read.table("/usr/local/projects/file")`;
    print "Running [$command]\n";
    $R->send($command);
    
  2. or download this
    my $file="/usr/local/projects/file";
    my $command = q`a<-read.table($file)`;
    print "Running [$command]\n";
    $R->send($command);