I am trying to "clean" some data. I have values which are negative, which they cannot be. And I would like to replace all values that are negative to their corresponding positive values.
A | B | C
-1.9 | -0.2 | 'Hello'
1.2 | 0.3 | 'World'
I would like this to become
A | B | C
1.9 | 0.2 | 'Hello'
1.2 | 0.3 | 'World'
As of now I have just begun writing the replace statement
df.replace(df.loc[(df['A'] < 0) & (df['B'] < 0)],df * -1,inplace=True)
Please help me in the right direction