Which pandas method removes rows with missing values?

Data Science with Python Easy

Data Science with Python — Easy

Which pandas method removes rows with missing values?

Key points

  • df.dropna() eliminates rows with missing values
  • df.remove_na() is not a valid pandas method
  • df.fillna() fills missing values instead of removing them
  • df.strip_na() does not exist in pandas

Ready to go further?

Related questions