repalce all the numeric of the Dataframe with Nan code example
Example: replace all nan values in dataframe
# Replacing all nan values with 0 in Dataframe
df = df.fillna(0)
# Replacing all nan values with 0 in Dataframe
df = df.fillna(0)