AttributeError: module 'seaborn' has no attribute 'plt'
时间: 2023-06-22 17:27:09 浏览: 276
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常发生在尝试使用Seaborn可视化库时。这个错误的原因是因为Seaborn中没有名为“plt”的模块。
解决这个问题的方法是将代码中的“seaborn.plt”更改为“matplotlib.pyplot”或者只使用“plt”而不指定模块名。这是因为Seaborn内部使用了Matplotlib,所以可以直接使用Matplotlib的绘图函数。
例如,您可以将代码中的:
```
import seaborn as sns
sns.plt.plot(x, y)
```
更改为:
```
import seaborn as sns
import matplotlib.pyplot as plt
plt.plot(x, y)
```
或者:
```
import seaborn as sns
import matplotlib.pyplot as plt
sns.set()
plt.plot(x, y)
```
阅读全文