Как запустить нелинейную регрессию в python

у меня есть следующая информация (dataframe) в python

product baskets scaling_factor
12345   475     95.5
12345   108     57.7
12345   2       1.4
12345   38      21.9
12345   320     88.8

и я хочу запустить следующее нелинейные регрессии и оценки параметров.

a, b и c

уравнение, которое я хочу попасть:

scaling_factor = a - (b*np.exp(c*baskets))

в sas мы обычно запускаем следующую модель: (использует метод Гаусса Ньютона )

proc nlin data=scaling_factors;
 parms a=100 b=100 c=-0.09;
 model scaling_factor = a - (b * (exp(c*baskets)));
 output out=scaling_equation_parms 
parms=a b c;

есть ли аналогичный способ оценить параметры в Python, используя не линейная регрессия, как я могу видеть сюжет в python.

2 ответов


соглашаясь с Крисом Мюллером, я бы также использовал scipy но scipy.optimize.curve_fit. Код выглядит так:

###the top two lines are required on my linux machine
import matplotlib
matplotlib.use('Qt4Agg')
import matplotlib.pyplot as plt
from matplotlib.pyplot import cm
import numpy as np
from scipy.optimize import curve_fit #we could import more, but this is what we need
###defining your fitfunction
def func(x, a, b, c):
    return a - b* np.exp(c * x) 
###OP's data
baskets = np.array([475, 108, 2, 38, 320])
scaling_factor = np.array([95.5, 57.7, 1.4, 21.9, 88.8])
###let us guess some start values
initialGuess=[100, 100,-.01]
guessedFactors=[func(x,*initialGuess ) for x in baskets]
###making the actual fit
popt,pcov = curve_fit(func, baskets, scaling_factor,initialGuess)
#one may want to
print popt
print pcov
###preparing data for showing the fit
basketCont=np.linspace(min(baskets),max(baskets),50)
fittedData=[func(x, *popt) for x in basketCont]
###preparing the figure
fig1 = plt.figure(1)
ax=fig1.add_subplot(1,1,1)
###the three sets of data to plot
ax.plot(baskets,scaling_factor,linestyle='',marker='o', color='r',label="data")
ax.plot(baskets,guessedFactors,linestyle='',marker='^', color='b',label="initial guess")
ax.plot(basketCont,fittedData,linestyle='-', color='#900000',label="fit with ({0:0.2g},{1:0.2g},{2:0.2g})".format(*popt))
###beautification
ax.legend(loc=0, title="graphs", fontsize=12)
ax.set_ylabel("factor")
ax.set_xlabel("baskets")
ax.grid()
ax.set_title("$\mathrm{curve}_\mathrm{fit}$")
###putting the covariance matrix nicely
tab= [['{:.2g}'.format(j) for j in i] for i in pcov]
the_table = plt.table(cellText=tab,
                  colWidths = [0.2]*3,
                  loc='upper right', bbox=[0.483, 0.35, 0.5, 0.25] )
plt.text(250,65,'covariance:',size=12)
###putting the plot
plt.show()
###done

В конце концов, давая вам: enter image description here


для таких проблем я всегда использую scipy.optimize.minimize С моим собственные функции клеток. Алгоритмы оптимизации не справляются с большими различиями между различными входами, поэтому рекомендуется масштабировать параметры в вашей функции так, чтобы параметры, подверженные scipy, были порядка 1, Как я сделал ниже.

import numpy as np

baskets = np.array([475, 108, 2, 38, 320])
scaling_factor = np.array([95.5, 57.7, 1.4, 21.9, 88.8])

def lsq(arg):
    a = arg[0]*100
    b = arg[1]*100
    c = arg[2]*0.1
    now = a - (b*np.exp(c * baskets)) - scaling_factor
    return np.sum(now**2)

guesses = [1, 1, -0.9]
res = scipy.optimize.minimize(lsq, guesses)

print(res.message)
# 'Optimization terminated successfully.'

print(res.x)
# [ 0.97336709  0.98685365 -0.07998282]

print([lsq(guesses), lsq(res.x)])
# [7761.0093358076601, 13.055053196410928]

конечно, как и со всеми проблемами минимизации важно использовать хорошие начальные догадки, так как все алгоритмы могут попасть в локальный минимум. Метод оптимизации можно изменить с помощью method ключевое слово; некоторые возможности

  • ‘Nelder-Mead’
  • ‘Powell'
  • 'CG'
  • 'BFGS'
  • ‘Newton-CG'

по умолчанию БФГШ по данным документация.