作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的项目遇到了一些问题,因为我有一组数据,我将其绘制出来以获得 2 条曲线,并且我想通过指数曲线来拟合该图。
我看了这篇文章:fitting exponential decay with no initial guessing 。但我的例子有点不同。
这就是我得到的数据:
我的脚本如下:
mask_G = np.bitwise_and( tbdata['G'] < 99.99, tbdata['GERR'] < 0.2)
mask_R = np.bitwise_and( tbdata['R'] < 99.99, tbdata['RERR'] < 0.2)
G_corrected = tbdata[mask_G]
R_corrected = tbdata[mask_R]
fig13 = plt.gcf()
fig13.set_size_inches(16, 9)
fig13, (ax1,ax2) = plt.subplots(1,2)
fig_error_g = ax1.plot(G_corrected['G'], G_corrected['GERR'], '.')
ax1.set_xlabel('G')
ax1.set_ylabel('GERR')
ax1.set_title('Evolution de GERR en fonction de G')
fig_error_r = ax2.plot(R_corrected['R'], R_corrected['RERR'], '.')
ax2.set_xlabel('R')
ax2.set_ylabel('RERR')
ax2.set_title('Evolution de RERR en fonction de R')
fig13.tight_layout()
plt.savefig('graphique.png')
plt.show()
我尝试根据 scipy 文档编写该内容:
def exponential(x,a,b,c) :
return a * np.exp(-b * x) + c
xdata = G_corrected['G']
y = G_corrected['GERR']
ydata = y + 0.2 * np.random.normal(size=len(xdata))
popt, pcov = curve_fit(exponential, xdata, ydata)
但我明白:
/home/user/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/scipy/optimize/minpack.py:601: OptimizeWarning: Covariance of the parameters could not be estimated
category=OptimizeWarning)
你知道我该如何处理吗?
非常感谢;)
编辑:
我试图这样适应我的情节:
mask_G = np.bitwise_and( tbdata['G'] < 99.99, tbdata['GERR'] < 0.2)
mask_R = np.bitwise_and( tbdata['R'] < 99.99, tbdata['RERR'] < 0.2)
G_corrected = tbdata[mask_G]
R_corrected = tbdata[mask_R]
params = np.polyfit(G_corrected['G'], np.log(G_corrected['GERR']),1)
a = params[0]
A = np.exp(params[1])
fig13 = plt.gcf()
fig13.set_size_inches(16, 9)
fig13, (ax1,ax2) = plt.subplots(1,2)
fig_error_g = ax1.plot(G_corrected['G'], (G_corrected['GERR']), '.')
fig_error_g = ax1.plot(G_corrected['G'], (A*np.exp(a*G_corrected['G'])),'.')
ax1.set_xlabel('G')
ax1.set_ylabel('GERR')
ax1.set_title('Evolution de GERR en fonction de G')
fig_error_r = ax2.plot(R_corrected['R'], np.log(R_corrected['RERR']), '.')
ax2.set_xlabel('R')
ax2.set_ylabel('RERR')
ax2.set_title('Evolution de RERR en fonction de R')
fig13.tight_layout()
plt.savefig('graphique.png')
plt.show()
我得到:
您对这个结果有何看法?
最佳答案
最简单的方法是将对数缩放应用于绘图。您当然知道 log(exp(x)) = x,即如果您将 log() 应用于您的 y 值并绘制,您应该得到一个线性图。一旦你有了它,你就可以将它与你的线性工具箱( Gaussian Least Square method )相匹配。所得斜率是您尝试获取的 exp(ax) 中的前置因子。
如果您对 x 轴有其他依赖关系,则制作数据的对数图以找出所有依赖关系可能会有所帮助。
关于python - 如何用指数曲线拟合数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36834637/
我是一名优秀的程序员,十分优秀!