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''
아래와 같이 numpy 배열의 데이터타입이 object 인 경우. numpy 내에 object로 스트링으로 숫자나 글자들이 들어가있을 수도 있다. 추출한 행,열의 dtype을 확인하여라.
np.isnan(np.array([np.nan, 0], dtype=object))
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''
반응형
'Data science > Python' 카테고리의 다른 글
[Pycharm] Docstring 기본 세팅 (0) | 2021.02.06 |
---|---|
Hashable 이란? 쉬운 설명: python (0) | 2020.10.10 |
0. Python 이란?: 언어형태, 특징, 메모리관리 (0) | 2019.06.16 |
python 시각화 : Seaborn (0) | 2019.06.10 |
Python 시각화: 기본 (0) | 2019.05.30 |