Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Hands-On Data Science with Anaconda

You're reading from  Hands-On Data Science with Anaconda

Product type Book
Published in May 2018
Publisher Packt
ISBN-13 9781788831192
Pages 364 pages
Edition 1st Edition
Languages
Authors (2):
Yuxing Yan Yuxing Yan
Profile icon Yuxing Yan
James Yan James Yan
Profile icon James Yan
View More author details

Table of Contents (15) Chapters

Preface Ecosystem of Anaconda Anaconda Installation Data Basics Data Visualization Statistical Modeling in Anaconda Managing Packages Optimization in Anaconda Unsupervised Learning in Anaconda Supervised Learning in Anaconda Predictive Data Analytics – Modeling and Validation Anaconda Cloud Distributed Computing, Parallel Computing, and HPCC References Other Books You May Enjoy

Implementation via Julia

The first example uses the familiar dataset called iris again. Using the kmeans() function, the program tries to group these plants:

using Gadfly 
using RDatasets 
using Clustering 
iris = dataset("datasets", "iris") 
head(iris) 
features=permutedims(convert(Array, iris[:,1:4]),[2, 1]) 
result=kmeans(features,3)                           
nameX="PetalLength" 
nameY="PetalWidth" 
assignments=result.assignments   
plot(iris, x=nameX,y=nameY,color=assignments,Geom.point) 

The related output is shown here:

For the next example, we try to sort a set of random numbers into 20 clusters. The code is shown here:

using Clustering 
srand(1234) 
nRow=5 
nCol=1000 
x = rand(nRow,nCol) 
maxInter=200  #max interation  
nCluster=20 
R = kmeans(x,nCluster;maxiter=maxInter,display=:iter) 
@assert nclusters(R) ==nCluster 
c = counts...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}