Realization of clustering algorithm by Spark-shell

Source: Internet
Author: User

Spark version 1.3.1

Scala version 2.11.6

Reference official website http://spark.apache.org/docs/latest/mllib-clustering.html

After running Spark-shell, first import the required modules

Import Org.apache.spark.mllib.clustering.KMeans

Import Org.apache.spark.mllib.linalg.Vectors

// Load and parse the data

val data = sc. Textfile ( "/home/hadoop/hadoopdata/data3.txt" )  //One sample per row, The characteristics of the sample are separated by spaces

< span class= "n" > Val parseddata = data. Map (s => vectors. Dense (s. Split ( " Map (_. Todoublecache ()

< Span class= "o" > < Span class= "NC" > < Span class= "o" >val clusters = kmeans.train ( Parseddata, Numclusters, Numiterations, parallrunnums)//The latter three to be replaced by the number you set

Cluster center Val clustercenters=clusters.clustercenters//cluster result label Val labels=clusters.predict (parseddata)// Save Results Labels.saveastextfile ("/HOME/HADOOP/HADOOPDATA/RESULT3")//Results saved in RESULT3 this folder

Realization of clustering algorithm by Spark-shell

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.