23
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

numpy.isnan()するときは、文字列を混じらせない

Last updated at Posted at 2018-07-29

タイトル通りだが、下記のように文字列が混じった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])
23
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?