Closed smcclure17 closed 2 years ago
Replacing suppressed values with None was not actually replacing the suppressed values (the error 'Unable to parse string "suppressed" at position 0' was thrown.)
None
'Unable to parse string "suppressed" at position 0'
This replaces None with np.NaN which appears to work.
np.NaN
👍
Replacing suppressed values with
None
was not actually replacing the suppressed values (the error'Unable to parse string "suppressed" at position 0'
was thrown.)This replaces
None
withnp.NaN
which appears to work.