Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Python Data Mining Quick Start Guide

You're reading from  Python Data Mining Quick Start Guide

Product type Book
Published in Apr 2019
Publisher Packt
ISBN-13 9781789800265
Pages 188 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Nathan Greeneltch Nathan Greeneltch
Profile icon Nathan Greeneltch

Table of Contents (9) Chapters

Preface Data Mining and Getting Started with Python Tools Basic Terminology and Our End-to-End Example Collecting, Exploring, and Visualizing Data Cleaning and Readying Data for Analysis Grouping and Clustering Data Prediction with Regression and Classification Advanced Topics - Building a Data Processing Pipeline and Deploying It Other Books You May Enjoy

Clustering methods

The clustering methods in scikit-learn have a nice congruent usage that, for the most part, matches the following pseudocode across all the algorithms:

### this is pseudocode. it will not execute ###
# import module and instantiate method object
from sklearn.cluster import Method
clus = Method(args*)

# fit to input data
clus.fit(X_input)

# get cluster assignments of X_input
X_assigned = clus.labels_

The rest of this chapter will cover some common methods used for data clustering. The following is a group of plots comparing different cluster methods and how they assign data points into groups:

Take a minute to study the preceding "Comparing Cluster Methods" screenshot and look for any qualitative trends or patterns before reading the following sections. Your goal should be to read the rest of the chapter looking for validation of your qualitative pattern...
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}