Answers for "python numpy array replace nan with string"

0

python numpy array replace nan with string

import numpy as np
l=['foo', 'bar', 'baz', np.nan]

l_new=['missing' if x is np.nan else x for x in l]

print l_new
# Result:
# ['foo', 'bar', 'baz', 'missing']
Posted by: Guest on August-24-2021

Code answers related to "python numpy array replace nan with string"

Python Answers by Framework

Browse Popular Code Answers by Language