Calling R from Perl Statistics::R ht …


Castelvetrano Calling R from Perl

agence de rencontre sur tournefeuille Statistics::R

Synopsis

 use Statistics::R;
  my $R = Statistics::R->new();
  $R->startR;
  $R->send(q`postscript("file.ps" , horizontal=FALSE , width=500 , height=500 , pointsize=1)`);
  $R->send(q`plot(c(1, 5, 10), type = "l")`);
  $R->send(q`dev.off()`);
  $R->send(qq`x = 123 \n print(x)`);
  my $ret = $R->read;
  print "\$ret : $ret\n";
  $R->stopR();

Leave a Reply

Your email address will not be published. Required fields are marked *