Hi I'm trying to build logistic regression using ML Pipeline
val lr = new LogisticRegression()
lr.setFitIntercept(true)
lr.setMaxIter(100)
val model = lr.fit(data)
println(model.summary)
I'm getting coefficients but not able to get the predicted and probability
values.
Please help
--
Thanks and Regards
Arun
