Book Image

The Pandas Workshop

By : Blaine Bateman, Saikat Basak, Thomas V. Joseph, William So
5 (1)
Book Image

The Pandas Workshop

5 (1)
By: Blaine Bateman, Saikat Basak, Thomas V. Joseph, William So

Overview of this book

The Pandas Workshop will teach you how to be more productive with data and generate real business insights to inform your decision-making. You will be guided through real-world data science problems and shown how to apply key techniques in the context of realistic examples and exercises. Engaging activities will then challenge you to apply your new skills in a way that prepares you for real data science projects. You’ll see how experienced data scientists tackle a wide range of problems using data analysis with pandas. Unlike other Python books, which focus on theory and spend too long on dry, technical explanations, this workshop is designed to quickly get you to write clean code and build your understanding through hands-on practice. As you work through this Python pandas book, you’ll tackle various real-world scenarios, such as using an air quality dataset to understand the pattern of nitrogen dioxide emissions in a city, as well as analyzing transportation data to improve bus transportation services. By the end of this data analytics book, you’ll have the knowledge, skills, and confidence you need to solve your own challenging data science problems with pandas.
Table of Contents (21 chapters)
1
Part 1 – Introduction to pandas
6
Part 2 – Working with Data
11
Part 3 – Data Modeling
15
Part 4 – Additional Use Cases for pandas

Solution 7.1

Please use the following steps to complete the activity:

  1. Open a Jupyter notebook.
  2. Import the pandas package:
    import pandas as pd=

Load the CSV file as a DataFrame:

file_url = 'https://raw.githubusercontent.com/PacktWorkshops/The-Pandas-Workshop/master/Chapter07/Data/student-mat.csv'
data_frame = pd.read_csv(file_url, delimiter=';')

Note that CSV uses ; as a delimiter. So, we have used the delimiter option with pd.read_csv() to explicitly specify the correct delimiter to be used in order to read the dataset.

  1. Modify the DataFrame to contain only these columns: school, sex, age, address, health, absences, G1, G2, and G3:
    data_frame = data_frame[[
        'school', 'sex', 'age', 'address', 'health', 'absences', 'G1', 'G2', 'G3'
    ]]
  2. Display the first 10 rows of the DataFrame:
    data_frame.head(10)

The output will...