タイトル通りだが、下記のように文字列が混じったarrayに対し
import numpy as np
arr = np.array([0.2, 0.4, np.NaN, 0.3, np.NaN, '0.5', 2])
print(arr.dtype)
print(arr)
# 出力結果
<U32
['0.2' '0.4' 'nan' '0.3' 'nan' '0.5' '2']
numpy.isnanメソッドを呼び出すとエラーとなる。
np.isnan(arr)
# 出力結果
TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
事前に、全データを数値型にすることで
arr = arr.astype(np.float32)
print(arr.dtype)
print(arr)
# 出力結果
float32
[0.2 0.4 nan 0.3 nan 0.5 2. ]
numpy.isnanメソッドが正しく動作する。
np.isnan(arr)
# 出力結果
array([False, False, True, False, True, False, False])