rJava is an interface between R and Java.

learn more… | top users | synonyms

0
votes
0answers
22 views

How I can load add-on R libraries into JRI and execute from Java?

I am working with a Java and I need to use an add-on R library and use the functions within that library. I tried the answers provided in the following questions How I can load a R script into JRI ...
1
vote
1answer
27 views

Break out of a Java call or Callbacks or something similar in R

I use this package called "Rjms" which is a wrapper for RJava for pushing/consuming from an apache activeMQ. There is a function called "consume" in the package which I use to consume from a queue. ...
0
votes
0answers
36 views

rJava installation in R on debian

After updating to R 3.0.1 on a Debian 64-bit machine, the rJava package does not want to install. configuration failed, so sudo R CMD javareconf [this worked on another debian machine]. however it ...
1
vote
0answers
24 views

Status of JRI: R interface to run R inside Java application

Recently JRI was made part of rJava, as by www.rforge.net/JRI "so if you simply want to use JRI, install rJava binary and your'e all set!" That said, where is the documentation? ...
1
vote
1answer
33 views

Reading R-Errors through JRI

i'm using JRI, to talk to R through Java. If i try to get the result of my R-Code as Double i get a NullPointer. Normally this is caused by an error of R. Is it possible to get the output of the ...
1
vote
1answer
38 views

JRI from Hive UDF / UDAF

I have R installed on some data nodes and can write Map reduce jobs to invoke R through JRI. Next, to get R to be invoked through a hive query, I override the terminate method in GenericUDAFEvaluator ...
0
votes
0answers
56 views

StatRT in Eclipse - cannot install rt package in R in Linux Mint 14

Solved! see comment below. I am having trouble getting StatRT to work in eclipse. The problem is when I try to install the rt package in R install.packages(c("rj", "rj.gd"), ...
6
votes
1answer
409 views

Unable to install rJava in R 3.0 in Ubuntu 13.04

I am not able to call rJava package in R 3.0. I got the following message Error: package ‘rJava’ was built before R 3.0.0: please re-install it I am getting error when I tried to re-install rJava ...
0
votes
0answers
60 views

Tutorial on setting up Java-To-R (JRI rJava) to work with GWT Application

does anyone know a way to configure the wrapper for Java-to R (JRI or rJava [they are i think the same thing) How do I need to configure it, what to do? Do i need to modifiy the project xmlfile and ...
-3
votes
2answers
74 views

100 syntax errors on tokens in R.java

There is exactly 100 errors in R.java that all say the same error. The error is the following: Syntax error on token "10", delete this token There are red flags everywhere saying not to modify ...
1
vote
2answers
84 views

JRI REXP boolean values

I want to get results from an method which is called kruskalmc. The results in R console look like that: Multiple comparison test after Kruskal-Wallis p.value: 0.05 Comparisons obs.dif ...
2
votes
0answers
122 views

Implementation of a Java “ArrayList” like data structure in R to allow fast appending of ReferenceClasses objects one-by-one (probably using rJava)

I need to perform a discrete event simulation involving lots of general linear regression in R and hence a large number of R objects need to be appended into a list or an array one by one. Now ...
1
vote
0answers
81 views

Error in downloading data from bloomberg via library “rbbg”

I have a R code to download data from Bloomberg regularly. It had worked perfectly fine since 4 months ago untill very recently. The library "rbbg" is still loaded successfully and as I generate ...
1
vote
1answer
320 views

How to set environment variables for R to use in Tomcat on RedHat Linux (RHEL6)

I'm trying to set up R and Tomcat on RHEL6 (6.4) I have installed R and can run it. I have installed Tomcat 7 and can host files file. I have packaged an application as a WAR file and deployed it ...
0
votes
0answers
69 views

rJava Memory Error

I am building a large species distribution model using the package "dismo" in the latest version of r. When I go to process the basic model using the code: me <- maxent(x=train, p=p) I get the ...
1
vote
0answers
30 views

rJava generics type

I have been playing with rJava package, but since it seems that rJava is not aware of Java generic types, I have difficulties creating java object with generic type parameters. If I have some java ...
0
votes
1answer
46 views

Error attempting to use rJava from a web application

I am using R version 2.15.2 on Ubuntu 11.04. JAVA_HOME variable is set to /usr/lib/jvm/jdk1.6.0_21. To be able to use load rJava from R I have to set JAVA_HOME to $JAVA_HOME/jre. However, I am ...
0
votes
1answer
114 views

Using R in Java application on a Mac

This is a follow up to one of my previous post about using R with JAVA on a Mac. My application depends on R to run. I've got Java installed, java version "1.6.0_37". I've got "R" installed, R version ...
0
votes
0answers
43 views

Trying to launch rJava in Eclipse

I got R_HOME is not set. Please set all required environment variables before running this program. Unable to start R What's going on? How do I fix this?
0
votes
1answer
123 views

openNLP on a mac

I am not familiar with Mac (I use Windows and Linux Mint) but have a package that I need to be able to tell people on all platforms how to build. This package relies on openNLP and because of ...
0
votes
1answer
182 views

Problems loading rJava Package on Win7

I have installed the latest versions of R (2.15.2) and Java (7.11), and through RStudio (0.97.310) I am trying to load the rJava package. It seemed to install properly, but when I call library(rJava) ...
0
votes
1answer
156 views

Integrating R and Hadoop (using JRI)

I have seen some option to integra R and hadoop like : RHadoop, RHipe , Hadoop Sreaming , RHive. I dont have any experinece in R but i do have good exp in Hadoop. Approach i am talking about might be ...
0
votes
0answers
64 views

Using R with Java in a portable context

rJava allows to integrate Java and R. R portable allows to run R on a USB drive and bring it with you on different Windows machines. You can install the rJava package with the R portable. It will use ...
2
votes
2answers
176 views

Installing and loading “rJava”

I am encountering problems loading the "Deducer" package due a loading problem with "rJava". The installation of "rJava" seems to be done correctly, yet it fails when calling it to load. Please, can ...
0
votes
1answer
91 views

Error rJava 64bit R&Eclipse

I have been trying to switch to 64-bit environment but i get stuck with rJava not working. I have followed thread where people where having the same problem and their solution (JDK, JVM.DLL, ...
0
votes
1answer
105 views

Java runtime segfaults when saving large data.frame from JRI

I've followed the rtest.java example code from the rJava installation (/usr/lib/R/site-library/rJava/jri/examples/rtest.java on Debian and derivatives) for building data.frames from java arrays. This ...
0
votes
0answers
137 views

symbol libintl_dgettext: referenced symbol not found

We are using R in solaris sparc 10.While accessing rJava examples it shows error like: Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object ...
0
votes
0answers
98 views

Calling R from Python(x,y) spider IDE via pyper for an Oracle database through rJava

I have written a R program to connect an Oracle database through rJava and giving 1. table data (sqldata & sqldata1 ) 2. the summary of that data (summary(sqldata1) & summary(sqldata1)) and it ...
3
votes
2answers
246 views

Using the Stanford NLP libraries from within R, using the rJava package

Does anybody have any experience with using StanfordCoreNLP ( http://nlp.stanford.edu/software/corenlp.shtml through rJava in R? I’ve been struggling to get it to work for two days now, and think ...
-2
votes
1answer
305 views

Integrating Java and R [closed]

I was looking for some third party jars to do some advanced analytical process like SQL window functions in Java,since our database mysql did not support it. With the help of google I found "R" though ...
0
votes
1answer
46 views

Create Array of JsonObject in R

I am able to create a json object from list in R using rJson . I used config <- list([Portname="PORT.H.2",MktValue="8000000",WtScheme="Closed"]) json <- toJSON(config) How can I pass ...
2
votes
2answers
105 views

R equivalent of Java map

I would like to pass a key/value pair from my R code to a java function. My java function has argument Map<String,String > . How can I write R function which calls my Java function and pass ...
0
votes
0answers
76 views

java equivalent data type for key value pair in R

I have a R function which accepts key/value pair as parameter. This R function internally calls my java function I made key/value pair as toto <- list(a="my name is",b="I'm called",c="name:") ...
0
votes
1answer
104 views

reading configuration from text file

I have a txt file which has entries indexUrl=http://192.168.2.105:9200 jarFilePath = /home/soumy/lib How can I read this file from R and get the value of jarFilePath ? I need this to set the ...
0
votes
0answers
220 views

Simultaneous Hive and Cassandra JDBC connections

I can connect to both Hive and Cassandra using JDBC if I only choose one, but if I want to have both, I get a java.lang.IncompatibleClassChangeError. The second connection always fails Doing this, ...
2
votes
0answers
155 views

how to get rJava 0.9-3 to work on OS X 10.7.4 with Oracle Java 1.7?

Is there anyone out there who has managed to get rJava 0.9-3 to work on OS X 10.7.4 with Oracle Java 1.7? R version 2.15.2 (2012-10-26) -- "Trick or Treat" Platform x86_64-apple-darwin9.8.0/x86_64 ...
0
votes
1answer
75 views

Class not found Exception in RConsole

I have a es.r script which is written in rJava.So My R script internally calls my Java functions . I created a batch file for setting the classPath with all the dependencies . I am able to run the ...
2
votes
1answer
219 views

Can't install rJava on ubuntu system

I've seen a few posts related to this...but all the suggested solutions ive seen dont seem to work....I am running R in an EC2 instance and ran the following commands to try and install rJava but to ...
2
votes
1answer
72 views

rJava: using java/lang/Vector with a certain template class

I'm currently programming an R-script which uses a java .jar that makes use of the java/lang/Vector class, which in this case uses a class in a method that is not native. In java source code: public ...
0
votes
0answers
63 views

Class Not found exception when calling .r file from commandprompt in windows

I have a maven project where all dependencies are copied to a mavenLib folder.My jar file and mavenLib folder is in target folder. I use batch file to set class path and it is @echo off setLocal ...
0
votes
1answer
119 views

Error while loading rJava

I get an error when I'd like to load rJava. JDK is installed. (I run R on a CentOS vm (cloudera demo vm cdh3u4)) > library(rJava) Error : .onLoad failed in loadNamespace() for 'rJava', details: ...
1
vote
0answers
44 views

Steps to copy all jar files under lib and run .r file in windows

I have a maven project and all the jar files are copied to maenLib folder. I am running the application from commandline using a .r file. I know how to run this in ubuthu but I wonder how can I make ...
0
votes
2answers
357 views

Install rJava on centOS

I have a problem installing rJava on a centOS VM (cloudera cdh3u4). I did this first: sudo R CMD javareconf [cloudera@localhost ~]$ sudo R CMD javareconf Java interpreter : /usr/bin/java Java ...
1
vote
1answer
110 views

can a JRI(Java/R Interface) program in a JAR file run on a system that doesn't have R installed?

If a JRI(Java/R Interface) program uses R to display a graph, can it be bundled into a jar and run on a system without R?
1
vote
1answer
143 views

Increasing Java heapsize in R has no effect

on Linux and Windows I call options( java.parameters="-Xmx512m" ) before loading any R libraries which rely on rJava. Especially when reading and writing large Excel files using XLConnect (which ...
0
votes
1answer
55 views

compiling rJava on Ubuntu

I am unable to compile rJava from source. Configure is not creating a Makefile even though it says it is. configure: creating ./config.status config.status: creating src/Makefile config.status: ...
3
votes
1answer
246 views

new Rengine(…); fails without error

I'm trying to set up JRI with Eclipse on a Windows 7 x64 system. I tried it once on my Laptop and it worked. Now on my Desktop it fails although everything of the R, rJava and JRI installation is ...
2
votes
1answer
95 views

xlsx package under Ubuntu cannot set values

I am running the following script library(xlsx); wb <- loadWorkbook("/home/.../MyFile.xlsx") #works fine sh <- getSheets(wb) #works fine rw <- getRows(sh[[1]]) #-works fine rc <- ...
2
votes
2answers
273 views

JRI Fatal Error on Ubuntu

I have successfully installed JRI and rJava on Windows 7. I am now trying to get it to work on Ubuntu with 64bit OS. I can make rJava calls from within R but getting JRI to work is more difficult. I ...
0
votes
1answer
99 views

Passing parameters in .jcall

I have just started working with rJava to utilise a host of Java code in an R based application. I've tried some simple "Hello world" type things so I know the basic setup is working. I have several ...

1 2