Data Manipulation With Pandas
Data Manipulation With Pandas
Exploring a DataFrame
Summary statistics
Counting
Explicit indexes
Original dataset:
When you first get a DataFrame, it's a good idea to get a sense of whether it contains
any missing values, and if so, how many. That's where the isna method comes in. When
we call isna on a DataFrame, we get a Boolean for every single value indicating
whether the value is missing or not, but this isn't very helpful when you're working with a
lot of data.