python plotting - 奇怪的轴格式化

时间:2017-01-18 13:02:38

标签: python matplotlib formatting axis figure

通过使用matplotlib进行绘图,我有时会使用这种轴格式。值是正确的(检查调试),唯一的问题是显示。

Example

plt.figure(figsize=(8, 8.5))
plt.subplot(311)
plt.plot(t_p, L_p)
plt.title('Lift')
plt.xlabel('Time [s]')
plt.ylabel('Lift [N]')
plt.ylim(min(L_p), max(L_p))
plt.matplotlib.pyplot.tight_layout(pad=1.08, h_pad=None, w_pad=None,rect=None)

谢谢大家的帮助。

0 个答案:

没有答案