You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
파일 저장은 되는데 warning이 계속 뜨네요.
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/numpy/core/_asarray.py:83: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray
The text was updated successfully, but these errors were encountered:
NumPy 버전이 1.19 이상에서 API가 deprecated 되어서 발생하는 warning인거 같습니다.
확인해 보니 pandas 라이브러리에서 보고된 #35434 이슈와 관련된 것으로 생각됩니다.
추가로 확인해 본결과 dart-fss 라이브러리 내부의 sorting_columns, drop_empty_columns의 함수에서 발생하고 있으며, 만약 pandas 라이브러리에서 수정되는데 시간이 걸리게 되면, 다음버전에서 warning이 뜨지 않도록 업데이트 하겠습니다.
당장 사용하시는데는 문제가 없기 때문에 그냥 사용하셔도 되나, 만약 warning이 보기 싫으시면 NumPy 1.18.5 버전으로 다운그레이드 하시거나, 아래와 같이 suppress 하셔서 사용하시면 될것 같습니다.
제가 뭘 잘못 쓴건지 모르겠지만...
파일 저장은 되는데 warning이 계속 뜨네요.
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/numpy/core/_asarray.py:83: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray
The text was updated successfully, but these errors were encountered: