我用seaborn画barplot,怎么让图片显示出来?
我试了sns.show(),结果报错了
AttributeError: 'module' object has no attribute 'show'
2个回答
sns.plt.show()似乎不可以,也许是版本的问题。不过下面的code应该是可以的。
import seaborn as sns
import matplotlib.pyplot as plt
sns.barplot([1, 2, 3], [2, 3, 4])
plt.show()
我自己查到了
sns.plt.show()就可以了
呜呜,谢谢,你是好人
-
桐桐酱
2017-09-27 11:31
sns.plt.show()不报错吗?AttributeError: module 'seaborn' has no attribute 'plt'
-
sasa
2018-07-20 11:54