pyplot放大(pyplot zooming in)

2019-07-30 08:03发布

我试图从绘制FITS文件的一些数据,我想知道是否有人知道如何集中在一块土地上的轴的某些区域? 下面是一些示例代码:

import pyfits
from matplotlib import pyplot as plt
from matplotlib import pylab
from pylab import *
#Assuming I have my data in the current directory
a = pyfits.getdata('fits1.fits')
x = a['data1'] # Lets assume data1 is the column: [0, 1, 1.3, 1.5, 2, 4, 8]
y = a['data2'] # And data2 is the column: [0, 0.5, 1, 1.5, 2, 2.5, 3]
plt.plot(x,y)

我怎么能只画出该地区[1.3 to 4]在x轴?

Answer 1:

使用plt.axis()函数与自己的极限。

plt.axis([xmin,xmax,ymin,ymax])

其中x(y)min/max是对于两个轴坐标限制。



Answer 2:

这个问题有没有关系,你如何操纵pyfits ,只是增加的问题

plt.xlim(1.3, 4.0)

你的代码之前plt.show()



文章来源: pyplot zooming in