我正在尝试使用交互模式在 x 轴上绘制大数字,而不是刻度上的完整数字,我得到 1、1.5 等和 +5.043e3。我怎样才能显示完整的号码?
定义后plt.ion()
,我在一个循环中有这个:
plt.xlabel("Wavelength (angstroms)")
plt.ylabel("Arbitrary Flux")
plt.plot(xo,yo,'k--')
for e in range(multispec):
if ( e == 0):
plt.plot(MX[e],MY[e], 'r-')
else:
plt.plot(MX[e],MY[e])
l=float(int(n))
plt.axis([n-1, n+1, 0.1, 1.1])
n 是在 for 中定义的其他变量。