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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -