作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Python 程序,可以显示温度下降与时间的关系图。沿着下降过程,温度在一段时间内保持恒定,几乎为 0 斜率,然后继续下降。当温度恒定时,曲线中的这个区域我希望程序能够自动检测并显示 y 值。该值稍后将被放入方程中。我正在尝试找出如何做到这一点。我尝试过但失败了,我最后一次尝试是:
import numpy as np
import matplotlib.pyplot as plt
list_of_files=[('logfile.txt', 'temp')]
datalist = [ ( np.loadtxt(filename), label ) for filename, label in list_of_files]
for data, label in datalist:
plt.plot( data[:0], data[:,1], label=label )
plt.ginput(n=1, timeout=30, show_clicks=True, mouse_add=1, mouse_pops=3, mouse_stop=2)
plt.show()
我希望在高原上单击鼠标可以显示并保存 y 坐标,只是为了引导我朝着正确的方向进行编程。但当我点击该图时,得到的只是一个简短的红色标记。我不想点击鼠标......谢谢,Rico。
最佳答案
迭代小数据 block ,确定数据 block 的斜率,返回满足您的条件的点
def zero_slope(data, chunksize = 3, max_slope = .001):
"""return the 'first' data point with zero slope
data --> numpy ndarray - 2d [[x0,y0],[x1,y1],...]
chunksize --> odd int
returns numpy ndarray
"""
midindex = chunksize / 2
for index in xrange(len(data) - chunksize):
chunk = data[index : index + chunksize, :]
# subtract the endpoints of the chunk
# if not sufficient, maybe use a linear fit
dx, dy = abs(chunk[0] - chunk[-1])
print dy, dx, dy / dx
if 0 <= dy / dx < max_slope:
return chunk[midindex]
关于python - 如何让 Pyplot 识别曲线图中的高原(几乎为 0 斜率),然后打印高原的 ydata 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18970281/
我是一名优秀的程序员,十分优秀!