Reputation: 1019
I'm trying to build a very simple scala standalone app using the Mllib, but I get the following error when trying to bulid the program:
Object Mllib is not a member of package org.apache.spark
Upvotes: 0
Views: 434
Reputation: 11741
Please look at the package -
import org.apache.spark.mllib._
And follow the guide here. https://spark.apache.org/docs/1.1.0/mllib-guide.html
Upvotes: 1