Open In App

Pandas DataFrame.dropna() Method

Last Updated : 31 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Pandas is one of the packages that makes importing and analyzing data much easier. Sometimes CSV file has null values, which are later displayed as NaN in Pandas DataFrame. Pandas dropna() method allows the user to analyze and drop Rows/Columns with Null values in different ways. 

 Pandas DataFrame.dropna() Syntax

Syntax: DataFrameName.dropna(axis=0, how=’any’, thresh=None, subset=None, inplace=False)

Parameters:

  • axis: axis takes int or string value for rows/columns. Input can be 0 or 1 for Integer and ‘index’ or ‘columns’ for String. 
  • how: how takes string value of two kinds only (‘any’ or ‘all’). ‘any’ drops the row/column if ANY value is Null and ‘all’ drops only if ALL values are null.
  • thresh: thresh takes integer value which tells minimum amount of na values to drop. 
  • subset: It’s an array which limits the dropping process to passed rows/columns through list. inplace: It is a boolean which makes the changes in data frame itself if True.

Pandas DataFrame dropna() Example

Example 1: Here we are using read_csv() to read our CSV file. Dropping Rows with at least 1 null value. A data frame is read and all rows with any Null values are dropped. The size of old and new data frames is compared to see how many rows had at least 1 Null value. 

Python3




# importing pandas module
import pandas as pd
 
# making data frame from csv file
data = pd.read_csv("nba.csv")
 
# making new data frame with dropped NA values
new_data = data.dropna(axis=0, how='any')
 
# comparing sizes of data frames
print("Old data frame length:", len(data),
      "\nNew data frame length:",
      len(new_data),
      "\nNumber of rows with at least 1 NA value: ",
      (len(data)-len(new_data)))


Output:

Since the difference is 94, there were 94 rows that had at least 1 Null value in any column.   

Old data frame length:  458 
New data frame length:  364 
Number of rows with at least 1 NA value:  94

Example 2: Changing axis and using how and inplace Parameters Two data frames are made. A column with all values = none is added to the new Data frame. Column names are verified to see if the Null column was inserted properly. Then Number of columns is compared before and after dropping NaN values.

Python3




# importing pandas module
import pandas as pd
 
# making data frame from csv file
data = pd.read_csv("nba.csv")
 
# making a copy of old data frame
new = pd.read_csv("nba.csv")
 
# creating a value with all null values in new data frame
new["Null Column"] = None
 
# checking if column is inserted properly
print(data.columns.values, "\n", new.columns.values)
 
# comparing values before dropping null column
print("\nColumn number before dropping Null column\n",
      len(data.dtypes), len(new.dtypes))
 
# dropping column with all null values
new.dropna(axis=1, how='all', inplace=True)
 
# comparing values after dropping null column
print("\nColumn number after dropping Null column\n",
      len(data.dtypes), len(new.dtypes))


Output:

['Name' 'Team' 'Number' 'Position' 'Age' 'Height' 'Weight' 'College'
 'Salary'] 
 ['Name' 'Team' 'Number' 'Position' 'Age' 'Height' 'Weight' 'College'
 'Salary' 'Null Column']

Column number before dropping Null column
 9 10

Column number after dropping Null column
 9 9


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads