Re: [R] RJava help

2012-02-25 Thread jesslim
i saw an example in http://www.mail-archive.com/r-help@stat.math.ethz.ch/msg76159.html but an error occur Error in .jcall(“my_convolve”, “[D”, “convolve”, x, y) : RcallMethod: cannot determine object class because the directory of classpath? -- View this message in context: http://r.789695.n4.n

Re: [R] RJava help

2012-02-25 Thread jesslim
u get the solution? if yes, please share it. i face same problem too -- View this message in context: http://r.789695.n4.nabble.com/RJava-help-tp2995886p4419945.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org maili

Re: [R] rJava Help

2011-04-25 Thread Prof Brian Ripley
On Tue, 26 Apr 2011, Wincent wrote: I believe this posting is placed, and I take the liberty to re-direct to the r-help mailing list. But this is *NOT* the support list for rJava: that is http://rosuda.org/lists.shtml In particular the author of rJava does not monitor R-help. Regards, Rong

Re: [R] rJava Help

2011-04-25 Thread Wincent
I believe this posting is placed, and I take the liberty to re-direct to the r-help mailing list. Regards, Ronggui On 26 April 2011 12:33, wrote: >  I am trying to create a web user interface using RApache. I need to install > rJava packge but I am getting the following error message > > RApac

Re: [R] RJava help

2010-10-15 Thread lord12
public class my_convolve { public static void main(String[] args) { } public static void convolve() { System.out.println("Hello"); } } library(rJava) .jinit(classpath="C:/Documents and Settings/GV/workspace/Test/bin", pa

Re: [R] RJava help

2010-10-14 Thread Romain Francois
Le 14/10/10 20:28, lord12 a écrit : I need help with RJava. So I run this R code: library(rJava) #load the rJava library .jinit(classpath="c:/Documents and Settings/GV/workspace/Test/src", parameters="-Xmx512m") #the above is to load the Java virtual machine, x = runif(1000) y = runif(1000) #t