A reference to an R object which is only guaranteed to be valid in the scope in which it was created.
A reference to an R object which persists beyond the scope in which it was created.
An interface to an R interpreter.
A reference to an R object.
A reference to an R object which is only guaranteed to be valid in the scope in which it was created.
A reference to an R object which persists beyond the scope in which it was created.
The companion object to the RClient class used to create an instance of the RClient class in a Scala application.
The companion object to the RClient class used to create an instance of the RClient class in a Scala application.
An object R
is an RClient instance available in a Scala interpreter created by calling the function
scala
from the package rscala. It is through this instance
R
that callbacks to the original R interpreter are possible.
The paths of the rscala's JARs are available from R using
rscala::.rscalaJar()
. To get just the JAR for Scala 2.12, for example, use rscala::.rscalaJar("2.12")
.
val R = org.ddahl.rscala.RClient()
An interface to an R interpreter.
An object
R
is the instance of this class available in a Scala interpreter created by calling the functionscala
from the package rscala. It is through this instanceR
that callbacks to the original R interpreter are possible.In a Scala application, an instance of this class is created using its companion object. See below. The paths of the rscala's JARs (for all supported versions of Scala) are available from R using
rscala::.rscalaJar()
. To get just the JAR for Scala 2.12, for example, userscala::.rscalaJar("2.12")
.This class is threadsafe.