Answers for "dataframe replace , with ."

9

replace values of pandas column

df.loc[df['column'] == 'column_value', 'column'] = 'new_column_value'
Posted by: Guest on June-26-2020
3

pandas dataframe replace inf

df.replace([np.inf, -np.inf], np.nan)
Posted by: Guest on June-02-2020

Code answers related to "dataframe replace , with ."

Python Answers by Framework

Browse Popular Code Answers by Language