标签: matplotlib jupyter seaborn
如果我尝试在jupyter笔记本中使用
%matplotlib notebook import seaborn as sns ... plt.grid()
网格不可见。 如果我在普通python中尝试相同(不是jupyter笔记本,没有%matplotlib),网格就可以了。
答案 0 :(得分:0)
在没有参数的情况下调用plt.grid()可以切换网格状态。因为默认的seaborn样式中有一个网格,所以你将其关闭。
plt.grid()