Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Machine Learning Fundamentals

You're reading from   Machine Learning Fundamentals Use Python and scikit-learn to get up and running with the hottest developments in machine learning

Arrow left icon
Product type Paperback
Published in Nov 2018
Publisher
ISBN-13 9781789803556
Length 240 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Hyatt Saleh Hyatt Saleh
Author Profile Icon Hyatt Saleh
Hyatt Saleh
Arrow right icon
View More author details
Toc

Chapter 2: Unsupervised Learning: Real-life Applications

Activity 3: Using Data Visualization to Aid the Preprocessing Process

  1. Load the previously downloaded dataset by using the Pandas function read_csv(). Store the dataset in a Pandas DataFrame named data:
    import pandas as pd
    import matplotlib.pyplot as plt
    import numpy as np
    np.random.seed(0)

    First, import the required libraries. Then, feed the dataset path to the Pandas function's read_csv():

    data = pd.read_csv("datasets/wholesale_customers_data.csv")
  2. Check for missing values in your DataFrame. Using the isnull() function plus the sum() function, count the missing values of the entire dataset at once:
    data.isnull().sum()
    Figure 2.16: A screenshot showing the number of missing values in the DataFrame

    As you can see from the preceding screenshot, there are no missing values in the dataset.

  3. Check for outliers in your DataFrame. Using the technique you learned in the previous chapter, label those values that...
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 $19.99/month. Cancel anytime
Banner background image