Open jacobdadams opened 4 years ago
Check to see if instances of x == np.nan should be replaced with np.isnan(x)
x == np.nan
np.isnan(x)
Check to see if instances of
x == np.nan
should be replaced withnp.isnan(x)