Re: Predictive Modelling in sparkR

2016-01-07 Thread Yanbo Liang
Hi Chandan, Do you mean to run your own LR algorithm based on SparkR? Actually, SparkR provide the ability to run the distributed Spark MLlib LR and the interface is similar with the R GLM. For your refer: https://spark.apache.org/docs/latest/sparkr.html#binomial-glm-model 2016-01-07 2:45 GMT+08:

Re: Predictive Modelling in sparkR

2016-01-07 Thread Chandan Verma
Hi yanbo, I was able to successfully perform logistic regression on my data and also performed the cross validation and it all worked fine. Thanks Sent from my Sony Xperia™ smartphone Yanbo Liang wrote >Hi Chandan, > > >Do you mean to run your own LR algorithm based on SparkR? > >A

Predictive Modelling in sparkR

2016-01-06 Thread Chandan Verma
Has anyone tried building logistic regression model in SparkR.. Is it recommended? Does it take longer to do process than what can be done in simple R? ===