replace data in dataframe pandas code example

Example 1: find and replace string dataframe

df['range'] = df['range'].str.replace(',','-')

Example 2: replacing values in pandas dataframe

df['coloum'] = df['coloum'].replace(['value_1','valu_2'],'new_value')

Example 3: pandas dataframe replace inf

df.replace([np.inf, -np.inf], np.nan)

Example 4: how to replace values in column pandas

# importing pandas as pd
import pandas as pd
  
# Making data frame from the csv file
df = pd.read_csv("nba.csv")
  
# this will replace "Boston Celtics" and "Texas" with "Omega Warrior"
df.replace(to_replace =["Boston Celtics", "Texas"], 
                            value ="Omega Warrior")