Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The Data Wrangling Workshop

You're reading from   The Data Wrangling Workshop Create your own actionable insights using data from multiple raw sources

Arrow left icon
Product type Paperback
Published in Jul 2020
Publisher Packt
ISBN-13 9781839215001
Length 576 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Authors (3):
Arrow left icon
Dr. Tirthajyoti Sarkar Dr. Tirthajyoti Sarkar
Author Profile Icon Dr. Tirthajyoti Sarkar
Dr. Tirthajyoti Sarkar
Shubhadeep Roychowdhury Shubhadeep Roychowdhury
Author Profile Icon Shubhadeep Roychowdhury
Shubhadeep Roychowdhury
Brian Lipp Brian Lipp
Author Profile Icon Brian Lipp
Brian Lipp
Arrow right icon
View More author details
Toc

Table of Contents (11) Chapters Close

Preface
1. Introduction to Data Wrangling with Python 2. Advanced Operations on Built-In Data Structures FREE CHAPTER 3. Introduction to NumPy, Pandas, and Matplotlib 4. A Deep Dive into Data Wrangling with Python 5. Getting Comfortable with Different Kinds of Data Sources 6. Learning the Hidden Secrets of Data Wrangling 7. Advanced Web Scraping and Data Gathering 8. RDBMS and SQL 9. Applications in Business Use Cases and Conclusion of the Course Appendix

3. Introduction to NumPy, Pandas, and Matplotlib

Activity 3.01: Generating Statistics from a CSV File

Solution:

These are the steps to complete this activity:

  1. Load the necessary libraries:
    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
  2. Read in the Boston Housing dataset (given as a .csv file) from the local directory:
    df=pd.read_csv("../datasets/Boston_housing.csv")

    Note

    Don't forget to change the path of the dataset (highlighted) based on where it is saved on your system.

  3. Check the first 10 records:
    df.head(10)

    The output is as follows:

    Figure 3.30: Output displaying the first 10 records

  4. Find the total number of records:
    df.shape

    The output is as follows:

    (506, 14)
  5. Create a smaller DataFrame with columns that do not include CHAS, NOX, B, and LSTAT:
    df1=df[['CRIM','ZN','INDUS',\
            'RM','AGE','DIS','RAD',\...
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 €18.99/month. Cancel anytime