search for: rtester

Displaying 2 results from an estimated 2 matches for "rtester".

Did you mean: tester
2012 Aug 02
1
help with install.packages
...I am trying to use install.packages obtained from here http://stat.ethz.ch/R-manual/R-devel/library/utils/html/install.packages.html My computer has these OS: 64-bit blfs linux R2.15.1 #------------ A) I did the following:- export DIR=/home/stats/R-2.15.0_runTEST190712A export DEST=/home/stats/Rtester cd $DEST ${DIR}/bin/R install.packages(MASS_7.3-17.tar.gz, ${DEST}, repos = getOption("NULL"), contriburl = contrib.url(NULL, type), internal, available = NULL, destdir = ${DEST}, dependencies = NA, type = getOption("pkgType")...
2009 Jun 12
0
JRclient.RSrvException Exception: Handshake
...ng R from Java. First i tried using rJava (JRI). But the examples didnt work properly. Now im trying to establish a connection by using Rserve and JRclient (RF503). I have the following code, which i`ve found: ------------------------------------------------------------------------ public class RTester { public static void main(String[] args) { Rconnection c = getLocalRconnection(); if (c != null) { try { double[] d = c.eval("rnorm(10)").asDoubleArray(); for (double n : d) System.out.println(n);...