Answers for "np is nan python"

1

python test if value is np.nan

import numpy as np

mynan = np.nan
mynum = 18

print("NaN? : ", np.isnan(mynan)) # Use np.isnan() to test
print("NaN? : ", np.isnan(mynum))

# Results:
# Nan? : True
# NaN? : False
Posted by: Guest on August-25-2021
0

python3 is nan

>>> import math
>>> x = float('nan')
>>> math.isnan(x)
True
Posted by: Guest on April-26-2020
1

np where nan

np.argwhere(np.isnan(x))
Posted by: Guest on April-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language