r - Is there a way to connect sparkR with MLlib library? -
i using spark ver 1.4. there api r users - sparkr.
i managed launch sparkr , convert r's data.frame spark's dataframe following command
irisdf <- createdataframe(sqlcontext, iris) i wondering if there's way somehow connect spark mllib library proceed logistic regression - https://spark.apache.org/docs/latest/mllib-linear-methods.html or maybe there away reconvert dataframe regular data.frame ?
there no way yet connect spark mllib, should released in next version. can reconvert dataframe data.frame by
collect(irisdf)
Comments
Post a Comment