module 'seaborn' has no attribute 'tsplot'
时间: 2023-11-17 15:06:32 浏览: 313
seaborn散点图
5星 · 资源好评率100%
这个错误是由于新版本的seaborn中已经没有tsplot这个方法导致的。解决方法是降低seaborn的版本,可以使用以下命令降低版本:
```
pip install seaborn==0.8.1 -i https://pypi.doubanio.com/simple
```
这样就可以解决这个错误了。
阅读全文