user3789843
user3789843

Reputation: 1019

loading Mllib of Apache Spark

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

Answers (1)

Soumya Simanta
Soumya Simanta

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

Related Questions