numpy
Eenvoudige lineaire regressie
Zoeken…
Invoering
Een lijn (of andere functie) aanpassen aan een set gegevenspunten.
Np.polyfit gebruiken
We maken een gegevensset die we vervolgens passen met een rechte lijn $ f (x) = mx + c $.
npoints = 20
slope = 2
offset = 3
x = np.arange(npoints)
y = slope * x + offset + np.random.normal(size=npoints)
p = np.polyfit(x,y,1) # Last argument is degree of polynomial
Om te zien wat we hebben gedaan:
import matplotlib.pyplot as plt
f = np.poly1d(p) # So we can call f(x)
fig = plt.figure()
ax = fig.add_subplot(111)
plt.plot(x, y, 'bo', label="Data")
plt.plot(x,f(x), 'b-',label="Polyfit")
plt.show()
Opmerking: dit voorbeeld volgt de numpy documentatie op https://docs.scipy.org/doc/numpy/reference/generated/numpy.polyfit.html nauwkeurig.
Np.linalg.lstsq gebruiken
We gebruiken dezelfde dataset als bij polyfit:
npoints = 20
slope = 2
offset = 3
x = np.arange(npoints)
y = slope * x + offset + np.random.normal(size=npoints)
Nu proberen we een oplossing te vinden door het stelsel van lineaire vergelijkingen A b = c te minimaliseren door | cA b | ** 2 te minimaliseren
import matplotlib.pyplot as plt # So we can plot the resulting fit
A = np.vstack([x,np.ones(npoints)]).T
m, c = np.linalg.lstsq(A, y)[0] # Don't care about residuals right now
fig = plt.figure()
ax = fig.add_subplot(111)
plt.plot(x, y, 'bo', label="Data")
plt.plot(x, m*x+c, 'r--',label="Least Squares")
plt.show()
Opmerking: dit voorbeeld volgt de numpy documentatie op https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.lstsq.html vrij nauwkeurig.
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow