Hi I'm using ml.LinearRegession package
How to get estimates and standard Error for the coefficient
PFB the code snippet
val lr = new LinearRegression()
lr.setMaxIter(10)
.setRegParam(0.01)
.setFitIntercept(true)
val model= lr.fit(test)
val estimates = model.summary
--
Thanks and Regards
Arun
