공부/python

ImportError: cannot import name 'Int64Index' from 'pandas'

무른2 2023. 11. 4. 21:45

 

 

pandas.Int64Index fix for FutureWarning

Just getting this new warning for my dataframes that are loaded from excel. I understand if I were to pd.DataFrame I could set the index, but I am not clear how to set the dataframe index type when...

stackoverflow.com

 

- 해결방법

패키지 재설치 및 xgboost 재설치

 

pip uninstall pandas
pip install pandas
pip3 uninstall xgboost
pip3 install xgboost

'공부 > python' 카테고리의 다른 글

알고리즘 BFS(너비우선탐색)  (0) 2023.11.24
enumerate  (0) 2023.11.23
IQR 이상치  (0) 2023.11.04
계속 혼동 된다.. map 함수  (0) 2023.10.23
텐서플로 import 에러  (0) 2023.10.22