I have dataframe column (df) which I am trying to replace 999 values with blank. The head of the unadjusted column looks like:
Name: IntValue, dtype: int32
0 999
1 50
2 50
3 55
4 58
I would like the adjusted column to be adjusted to look like:
Name: IntValue, dtype: int32
0
1 50
2 50
3 55
4 58
I am using:
rawDatabase[newFieldTrunc].replace(999, "")
But it's not changing the columns data at all.