Skip to Content
Practical Predictive Analytics
book

Practical Predictive Analytics

by Ralph Winters
June 2017
Beginner to intermediate
576 pages
15h 22m
English
Packt Publishing
Content preview from Practical Predictive Analytics

K-means clustering of terms

Now we can cluster the term document matrix using k-means. For illustration purposes, we will specify that five clusters be generated:

kmeans5 <- kmeans(dtms, 5)

Once k-means is done, we will append the cluster number to the original data, and then create five subsets based upon the cluster:

kw_with_cluster <- as.data.frame(cbind(OnlineRetail, Cluster = kmeans5$cluster)) # subset the five clusters cluster1 <- subset(kw_with_cluster, subset = Cluster == 1) cluster2 <- subset(kw_with_cluster, subset = Cluster == 2) cluster3 <- subset(kw_with_cluster, subset = Cluster == 3) cluster4 <- subset(kw_with_cluster, subset = Cluster == 4) cluster5 <- subset(kw_with_cluster, subset = Cluster == 5)
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Data Superstream: Analytics Engineering

Data Superstream: Analytics Engineering

Alistair Croll, Anna Filippova, Emilie Schario, Lewis Davies, Jacob Frackson, Benn Stancil, Nick Acosta, Elizabeth Caley
R: Predictive Analysis

R: Predictive Analysis

Tony Fischetti, Eric Mayor, Rui Miguel Forte
Python: Advanced Predictive Analytics

Python: Advanced Predictive Analytics

Ashish Kumar, Joseph Babcock

Publisher Resources

ISBN: 9781785886188Supplemental Content