【问题标题】:Using scipy curve_fit to fit exponential curve (fitted curve does match real curve)使用 scipy curve_fit 拟合指数曲线(拟合曲线与真实曲线匹配)
【发布时间】:2020-05-05 23:56:24
【问题描述】:

我正在尝试使用curve_fit (scipy.optimize) 拟合指数曲线,但拟合曲线看起来与真实曲线完全不同。 现在我正在使用以下代码:

X=[0.0, 9.0, 18.0, 27.0, 36.0, 45.0, 54.0]
Y=[0.090316199, -0.078157925, -0.350137315, -0.695193468, -1.106773689, -1.60467115, -2.196169408]

#plot Y against X
fig = plt.figure(num=None, figsize=(9, 7),facecolor='w', edgecolor='k')
ax=fig.add_subplot(111)
ax.scatter(X,Y)

#fit using curve_fit
popt, pcov = curve_fit(func, X, Y,maxfev=10000)

#compute Y_estiamted using fitted parameters 
Y_estimated=[popt[0]*np.exp(i+popt[1])+popt[2] for i in X]

#plot Y_estiamted against X
ax.scatter(X,Y_estimated, c='r')

def func(x,a,b,c):
    return a*(np.exp(x+b))+c

蓝色曲线是真实曲线,红色曲线是拟合曲线。

如您所见,拟合的红色曲线与真正的蓝色曲线完全不匹配。任何帮助将不胜感激!

【问题讨论】:

  • 我认为this answer 会有所帮助。
  • @PéterLeéh 代码中使用的方程无法匹配数据的形状,因此初始参数估计无关紧要。您之前链接到的答案在这种特定情况下无济于事。

标签: python scipy curve-fitting exponential data-fitting


【解决方案1】:

我认为问题在于模型功能。如果你把它改成这样的函数:

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

然后它找到了一个不错的选择:

我在代码中更改了一些内容:

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


X = [0.0, 9.0, 18.0, 27.0, 36.0, 45.0, 54.0]
Y = [0.090316199, -0.078157925, -0.350137315, -0.695193468, -1.106773689, -1.60467115, -2.196169408]


# plot Y against X
fig = plt.figure(num=None, figsize=(9, 7), facecolor='w', edgecolor='k')
ax = fig.add_subplot(111)
ax.scatter(X, Y)

# fit using curve_fit
popt, pcov = curve_fit(func, X, Y, maxfev=10000)

# compute Y_estiamted using fitted parameters
x = np.linspace(min(X), max(X), 100)
Y_estimated = func(x, *popt)

# plot Y_estiamted against X
ax.plot(x, Y_estimated, c='r')

【讨论】:

  • 请看我对这个问题的回答,它有一个只有两个参数的方程。
  • @JamesPhillips 的答案也是正确的(带有更好的代码示例)。问题是他为什么选择完全指数方法作为模型,尤其是对于这个数据集。
【解决方案2】:

我非常适合具有单个形状参数和小偏移量的渐近指数类型方程,“1.0 - pow(a, x) + b”。这是一个图形化 Python 拟合器,它使用这个方程处理您的数据。

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

# ignore warnings within curve_fit() routine
import warnings
warnings.filterwarnings("ignore")

X=[0.0, 9.0, 18.0, 27.0, 36.0, 45.0, 54.0]
Y=[0.090316199, -0.078157925, -0.350137315, -0.695193468, -1.106773689, -1.60467115, -2.196169408]

# alias data to match previous example
xData = numpy.array(X, dtype=float)
yData = numpy.array(Y, dtype=float)

def func(x, a, b): # Asymptotic Exponential A equation with offset from zunzun.com
    return 1.0 - numpy.power(a, x) + b

# these are the same as the scipy defaults
initialParameters = numpy.array([1.0, 1.0])

# curve fit the test data
fittedParameters, pcov = curve_fit(func, xData, yData, initialParameters)

modelPredictions = func(xData, *fittedParameters) 

absError = modelPredictions - yData

SE = numpy.square(absError) # squared errors
MSE = numpy.mean(SE) # mean squared errors
RMSE = numpy.sqrt(MSE) # Root Mean Squared Error, RMSE
Rsquared = 1.0 - (numpy.var(absError) / numpy.var(yData))

print('Parameters:', fittedParameters)
print('RMSE:', RMSE)
print('R-squared:', Rsquared)

print()


##########################################################
# graphics output section
def ModelAndScatterPlot(graphWidth, graphHeight):
    f = plt.figure(figsize=(graphWidth/100.0, graphHeight/100.0), dpi=100)
    axes = f.add_subplot(111)

    # first the raw data as a scatter plot
    axes.plot(xData, yData,  'D')

    # create data for the fitted equation plot
    xModel = numpy.linspace(min(xData), max(xData))
    yModel = func(xModel, *fittedParameters)

    # now the model as a line plot
    axes.plot(xModel, yModel)

    axes.set_xlabel('X Data') # X axis data label
    axes.set_ylabel('Y Data') # Y axis data label

    plt.show()
    plt.close('all') # clean up after using pyplot

graphWidth = 800
graphHeight = 600
ModelAndScatterPlot(graphWidth, graphHeight)

【讨论】:

  • 谢谢!但是你怎么知道使用 np.power 而不是 np.exp?
  • 我通过开源 Python 曲线拟合网站 zunzun.com 上的“函数查找器”运行发布的数据,寻找具有两个或更少参数的方程。这个方程是最好的结果之一。
猜你喜欢
  • 2016-11-29
  • 2017-04-21
  • 2014-09-08
  • 1970-01-01
  • 2020-07-12
  • 2018-11-20
  • 1970-01-01
  • 1970-01-01
  • 2018-06-02
相关资源
最近更新 更多