JRI
Java R Interface est une bibliothèque JNI ( donc à compiler ) pour communiquer en Java avec R.
Contents
Installation
Pour pouvoir installer JRI, vous devez avoir correctement installé et configuré préalablement Java ( 1.5 minimum ) et R.
Téléchargez l'archive selon votre version de R.
Ensuite déployez le répertoire et placez vous dans sa racine.
- Sous linux
./configure make
- Sous Windows
sh configure.win make
Lancement
Lors de l'installation, à la racine, un script run à été créé. C'est un exemple de script pour pouvoir lancer un programme Java utilisant JRI.
Le script est en deux parties. Une pour configurer les variables d'environnements Système et une pour les variables java.
Les variables d'environnements
- R_HOME
- R_SHARE_DIR
- R_INCLUDE_DIR
- R_DOC_DIR
Vous pouvez les configurer soit directement dans le système soit les paramétrer dans un script de démarage comme dans le fichier run
Les variables java
A la commande Java, vous devez rajouter deux options obligatoires:
- -Djava.library.path="Le repertoire racine de JRI"
- -cp "Le repertoire racine de JRI/src/JRI.jar":"Repertoire de votre class ou jar"
Exemples
Se connecter a R
/** connect to a new instance of R. * @param args arguments to be passed to R. Please note that R requires the presence of certain * arguments (e.g.--save
or--no-save
or equivalents), so passing an empty * list usually doesn't work. * @param b if set totrue
the the event loop will be started as soon as * possible, otherwise no event loop is started. Running loop requiresinitialCallbacks
to * be set correspondingly as well. * @param rMain an instance implementing the {@link org.rosuda.JRI.RMainLoopCallbacks * RMainLoopCallbacks} interface that provides methods to be called by R * @return a new R instance * @throws java.lang.Exception when the connection failed */ private static Rengine connect(String[] args,boolean b, RMainLoopCallbacks rMain) throws Exception{ // just making sure we have the right version of everything if (!Rengine.versionCheck()) { throw new Exception("** Version mismatch - Java files don't match library version."); } Rengine re=new Rengine(args, b, rMain); // the engine creates R is a new thread, so we should wait until it's ready if (!re.waitForR()) { throw new Exception("Cannot load R"); } return re; }