繁体   English   中英

如何为我猜测双指数衰减选择正确的初始拟合参数?

[英]How to choose the right initial fitting parameters for I'm guessing a double exponential decay?

我在尝试猜测初始拟合参数以提供给 scipy.optimize.curve_fit 以拟合我的数据(具有对数 y 轴)时遇到了失败的尝试。 由于双重衰减,我猜这是一个双重指数拟合(不过我可能是错的)。 代码和生成的图表如下。 在此处输入图片说明

import numpy as np
import matplotlib.pyplot as plt
from scipy.optimize import curve_fit

def double_exponential(x, a, b, c, d):
    return a*np.exp(-c*(x-b))+d

fig, ax = plt.subplots()
x = np.array([7.13793103, 21.4137931, 35.68965517, 49.96551724, 64.24137931, 78.51724138, 92.79310345, 107.06896552, 121.34482759, 135.62068966, 149.89655172, 164.17241379, 178.44827586, 192.72413793, 207.00000000, 221.27586207, 235.55172414, 249.82758621, 264.10344828, 278.37931034, 292.65517241, 306.93103448, 321.20689655, 335.48275862, 349.75862069, 364.03448276, 378.31034483, 392.5862069, 406.86206897, 421.13793103])
y = np.array([169954, 20599, 7309, 3989, 2263, 1569, 1134, 1017, 788, 806, 693, 528, 502, 431, 445, 367, 277, 267, 255, 189, 171, 109, 76, 36, 18, 9, 4, 3, 2, 1])
y_pruned = np.where(y < 1, 1, y)
p0 = (1.0, 1.0, 1.0, 1.0)  # only an example (I've tried other values without success)
popt, pcov = curve_fit(double_exponential, x, np.log(y_pruned), p0=p0)

ax.plot(x, double_exponential(x, *popt), 'g--')
ax.plot(x, np.log(y_pruned), 'ro')

ax.set_yscale('log')  # I need to have the y-axis logarithmic
plt.show()

我可能是错的,但在我看来它不是双指数。 在对数图中,它似乎是一个四阶多项式,如果您尝试一下,它非常适合:

在此处输入图片说明

我刚刚使用函数安装了x and np.log(y)

def f(x, a, b, c, d):
    return a*x**3 +b*x**2 + c*x + d

拟合的结果是:

a:  -4.933e-07 +/- 4.82e-08   (-9.8%)  initial:1
b:  0.0003011 +/- 3.14e-05   (10.4%)  initial:1
c:  -0.06804 +/- 0.00579   (-8.5%)  initial:1
d:  11.406  +/- 0.286      (2.5%)  initial:1

如果你真的想拟合xy而不是log(y)它有点棘手,因为来自前几个点的残差要大得多,拟合函数忽略了右边的小点:

def f(x, a=-4.933e-07, b=0.0003011, c=-0.06804, d=11.406):
    return np.exp(a*x**3 +b*x**2 + c*x + d)

在此处输入图片说明

当然,您可以调整此行为,权衡拟合函数中的点,并且它有效,但在我看来,仅拟合数据日志有点过于复杂:

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM