Home »
Python »
Python Programs
How to replace blank values (white space) with NaN in Pandas?
Given a Pandas DataFrame, we have to replace blank values (white space) with NaN.
Submitted by Pranit Sharma, on June 02, 2022
Pandas is a special tool that allows us to perform complex manipulations of data effectively and efficiently. Inside pandas, we mostly deal with a dataset in the form of DataFrame. DataFrames are 2-dimensional data structures in pandas. DataFrames consist of rows, columns, and the data.
While creating a DataFrame or importing a CSV file, there could be some NaN values in the cells. NaN values mean "Not a Number" which generally means that there are some missing values in the cell.
Here, we are going to learn how to replace the blank values with NaN values, for this purpose, we are going to use DataFrame.replace() method.
To work with pandas, we need to import pandas package first, below is the syntax:
import pandas as pd
Let us understand with the help of an example,
# Importing pandas package
import pandas as pd
# Imorting numpy package
import numpy as np
# Creating dictionary
d = {
'Fruits':['Apple','Orange',' '],
'Price':[50,40,30],
'Vitamin':['C','D',' ']
}
# Creating DataFrame
df = pd.DataFrame(d)
# Display original DataFrame
print("Orginial DataFrame:\n",df,"\n")
# Replacing blank values with NaN values
df = df.replace(' ', np.nan, regex=True)
# Display modified DataFrame
print("Modified DataFrame:\n",df)
Output:
Python Pandas Programs »