防止matplotlib从"添加"到轴

时间:2014-06-27 20:05:23

标签: python matplotlib

如何阻止Matplotlib在附图中的角落添加此值?该图由源代码的两个数据列表生成:

f, (ax1, ax2) = plt.subplots(2,1, sharex=True)
ax1.scatter(x, y1, marker=',',s=1, c='k')
ax1.axis([0., x, y1min, y1max])
ax2.scatter(x, y2, marker=',',s=1, c='k')
ax2.axis([0., x, y2min, y2max])

addition plot

0 个答案:

没有答案