jfloat_array | R Documentation |
Instantiate an Array[Float]
object with the value specified.
NOTE: this method is useful when one has to invoke a Java/Scala method
requiring an Array[Float]
as one of its parameters.
jfloat_array(sc, x)
sc |
A |
x |
A numeric vector in R. |
sc <- spark_connect(master = "spark://HOST:PORT")
jflt_arr <- jfloat_array(sc, c(-1.23e-8, 0, -1.23e-8))
# jflt_arr is now a reference an array of java.lang.Float
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.