gpt4 book ai didi

python - pyplot 放大

转载 作者:太空狗 更新时间:2023-10-29 17:25:59 28 4
gpt4 key购买 nike

我正在尝试从 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)

我怎么能只在 x 轴上绘制从 [1.3 到 4] 的区域?

最佳答案

plt.axis() 函数用于您的限制。

plt.axis([x_min, x_max, y_min, y_max])

其中 x_minx_maxy_miny_max 是两个轴的坐标限制。

关于python - pyplot 放大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11400579/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com