使用matplotlib

时间:2017-08-17 16:47:25

标签: python-3.x matplotlib

每当我以虚线或“ - ”格式绘制数据时,由于某种原因,线条会出现部分连接。即使我将图形保存到文件,虚线也会显示为连接,如附图中所示。

我只是使用了一些matplotlib教程的基本代码,为什么会这样呢?我正在使用Python 3.6和Spyder 3.1.4 IDE。

下面是我编写代码的简短片段:

fig, ax = plt.subplots()
ax.plot(x, y, color='black', linestyle='dashed') 
legend = ax.legend(loc='upper left',numpoints=1, frameon = False)
plt.autoscale(enable=True, axis="y", tight=False)
y_formatter = plt.ScalarFormatter(useOffset=False)
ax.yaxis.set_major_formatter(y_formatter)    
plt.savefig(os.path.join(output_path, "test")+'.png',bbox_inches='tight',dpi=300)

enter image description here

0 个答案:

没有答案