网上关于sweetviz的文章比较少,有些坑这里说一下给大家避坑。
使用sweetviz遇到的错误如下:
- KeyError: "None of ['index'] are in the columns"
- AttributeError: 'DataFrame' object has no attribute 'iteritems' ( iteritems在pandas 2.0+中改为items() )
- AttributeError: module 'numpy' has no attribute 'warnings'
解决方法:
都是版本导致的问题,用老版本可以解决,下面是我用的版本。博主没有深究根本原因,感兴趣的可以网络搜索搜索。
pip install pandas==1.5.3
pip install numpy==1.23.4
改完报错就可以愉快的使用sweetviz了,用sweetviz做EDA还是挺香的。
标签:避坑,sweetviz,iteritems,pip,工具,numpy,pandas From: https://www.cnblogs.com/gy77/p/17632455.html