我有以下代码用于在pandas中绘制图形:
x = df_props
fig,ax = plt.subplots(figsize=[10,5])
c = sns.diverging_palette(255, 133, l=60, n=3, center="dark")
for n,i in enumerate(range(0,len(x), 2000)):
gids = x[i:i+2000].index - mark_outlier
plotProfile('apples',gids,'grape',3,c[n],ax)
plt.legend(['1-2000','2000-4000','2000-4000'])
输出图表非常完美。我只是发现打印出来的传奇命令有点烦人 - 特别是当我用html保存Jupyter笔记本时。
我该怎样摆脱这个?
Out[278]:
<matplotlib.legend.Legend at 0x3497add0>
Out[278]:
<matplotlib.legend.Legend at 0x3494e190>
Out[278]:
<matplotlib.legend.Legend at 0x34976390>
Out[278]:
<matplotlib.legend.Legend at 0x33cc4c50>
Out[278]:
<matplotlib.legend.Legend at 0x7650ad90>