Displaying 1 result from an estimated 1 matches for "dorsperltt".
2005 Apr 27
1
R/Splus--Perl Interface && ssh
...ggestion will be highly appreciated.
Xiao
My perl program 'tt.pl'
#!/usr/bin/perl -w
use R;
use RReferences;
&R::initR("--silent");
&R::setDebug(0);
&R::library("RSPerl");
@t = &R::call("min", (1,2));
I have a script 'doRSPerltt' for the perl program
#!/bin/csh
setenv LD_LIBRARY_PATH /usr/lib/R/lib
setenv R_HOME /usr/lib/R
perl -I/usr/lib/R/site-library/RSPerl/examples/../share/blib/arch -I/usr/lib/R/site-library/RSPerl/examples/../share/blib/lib -I/usr/lib/R/site-library/RSPerl/scripts t
t.pl
I used ssh t...