소란한 블로그

[Python] colab 코랩 판다스 future warning 제거하는 방법 본문

Python

[Python] colab 코랩 판다스 future warning 제거하는 방법

소란 2021. 2. 7. 21:35
FutureWarning: is_categorical is deprecated and will be removed in a future version.

 

import warnings
warnings.simplefilter(action='ignore', category=FutureWarning) # FutureWarning 제거

 

위 코드를 쓰면 FutureWarning을 없앨 수 있다.

'Python' 카테고리의 다른 글

Python 01. Data Type (list, tuple, dictionary, set)  (0) 2020.12.29
Comments