how to not replace an existing value with nan during join in pandas code example
Example 1: replace nan in pandas
df['DataFrame Column'] = df['DataFrame Column'].fillna(0)
Example 2: replace "-" for nan in dataframe
df.replace(np.nan,0)
df['DataFrame Column'] = df['DataFrame Column'].fillna(0)
df.replace(np.nan,0)