Matplotlib pyplot - 带框架线的情节图

时间:2018-05-16 01:58:20

标签: python python-3.x matplotlib

这应该很简单,但我甚至不知道我想要的正确名称。

我想在matplotlib图中绘制框架线,基本上,在下图中右图中转换左图:

enter image description here

我的代码基本上是:

fig,ax = plt.subplots(1,1,squeeze=True,figsize=(16,14))

ax.plot(data1,negativeX,'g',linewidth=7)
ax.plot(data2,positiveX,'k')

for ax in fig.axes:
    ax.set_title(header)

plt.show()

0 个答案:

没有答案