Quiz on Dropping Missing Data in Pandas



1. What method is used to drop missing values from a DataFrame in Pandas?
2. Which parameter of dropna() allows you to specify how to handle missing data?
3. What does the axis parameter in dropna() signify?
4. If you want to drop rows with any missing values, which value should you pass to the how parameter?
5. What does the thresh parameter in dropna() do?

Advertisements