Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Pandas 1.x Cookbook - Second Edition

You're reading from  Pandas 1.x Cookbook - Second Edition

Product type Book
Published in Feb 2020
Publisher Packt
ISBN-13 9781839213106
Pages 626 pages
Edition 2nd Edition
Languages
Authors (2):
Matt Harrison Matt Harrison
Profile icon Matt Harrison
Theodore Petrou Theodore Petrou
Profile icon Theodore Petrou
View More author details

Table of Contents (17) Chapters

Preface Pandas Foundations Essential DataFrame Operations Creating and Persisting DataFrames Beginning Data Analysis Exploratory Data Analysis Selecting Subsets of Data Filtering Rows Index Alignment Grouping for Aggregation, Filtration, and Transformation Restructuring Data into a Tidy Form Combining Pandas Objects Time Series Analysis Visualization with Matplotlib, Pandas, and Seaborn Debugging and Testing Pandas Other Books You May Enjoy
Index

Masking DataFrame rows

The .mask method performs the complement of the .where method. By default, it creates missing values wherever the Boolean condition is True. In essence, it is literally masking, or covering up, values in your dataset.

In this recipe, we will mask all rows of the movie dataset that were made after 2010 and then filter all the rows with missing values.

How to do it…

  1. Read the movie dataset, set the movie title as the index, and create the criteria:
    >>> movie = pd.read_csv(
    ...     "data/movie.csv", index_col="movie_title"
    ... )
    >>> c1 = movie["title_year"] >= 2010
    >>> c2 = movie["title_year"].isna()
    >>> criteria = c1 | c2
    
  2. Use the .mask method on a DataFrame to remove the values for all the values in rows with movies that were made from 2010. Any movie that originally had a missing value for title_year is also masked:
    ...
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}