Hi guys. I have some problem in my example codes.
In console
----
$SPARKR_PATH/sparkR
In R
----
> library(plyrmr)
> plyrmr.options(backend="spark")
> write.csv(mtcars, "mtcars.csv")
> output(where(input("mtcars.csv", "csv"), cyl==8), path="mtcars.output", output="json", input.format="R.serialize")
This is my example code that find rows about "cyl==8" conditions.
However it show error messages that
Error in FUN(part) : could not find function "rdd.list2kv"Calls: <Anonymous> -> func -> FUN -> FUNI work this code in my own device environment.
- ubuntu 12.04
- R 3.2.0
- plyrmr 0.6.0
- SparkR 0.1
- spark 1.2.1
I saw almost same error in SparkR issue pages at here (
https://sparkr.atlassian.net/browse/SPARKR-54) but still in my device, this error occurs.
Any advice or idea to solve this problem for me?