bundles / numpy 2.4.3 / numpy / polynomial / polynomial / polyfit
function
numpy.polynomial.polynomial:polyfit
Signature
def polyfit ( x , y , deg , rcond = None , full = False , w = None ) Summary
Least-squares fit of a polynomial to data.
Extended Summary
Return the coefficients of a polynomial of degree deg that is the least squares fit to the data values y given at points x. If y is 1-D the returned coefficients will also be 1-D. If y is 2-D multiple fits are done, one for each column of y, and the resulting coefficients are stored in the corresponding columns of a 2-D return. The fitted polynomial(s) are in the form
where n is deg.
Parameters
x: array_like, shape (`M`,)x-coordinates of the
Msample (data) points(x[i], y[i]).y: array_like, shape (`M`,) or (`M`, `K`)y-coordinates of the sample points. Several sets of sample points sharing the same x-coordinates can be (independently) fit with one call to polyfit by passing in for
ya 2-D array that contains one data set per column.deg: int or 1-D array_likeDegree(s) of the fitting polynomials. If
degis a single integer all terms up to and including thedeg'th term are included in the fit. For NumPy versions >= 1.11.0 a list of integers specifying the degrees of the terms to include may be used instead.rcond: float, optionalRelative condition number of the fit. Singular values smaller than
rcond, relative to the largest singular value, will be ignored. The default value islen(x)*eps, whereepsis the relative precision of the platform's float type, about 2e-16 in most cases.full: bool, optionalSwitch determining the nature of the return value. When
False(the default) just the coefficients are returned; whenTrue, diagnostic information from the singular value decomposition (used to solve the fit's matrix equation) is also returned.w: array_like, shape (`M`,), optionalWeights. If not None, the weight
w[i]applies to the unsquared residualy[i] - y_hat[i]atx[i]. Ideally the weights are chosen so that the errors of the productsw[i]*y[i]all have the same variance. When using inverse-variance weighting, usew[i] = 1/sigma(y[i]). The default value is None.
Returns
coef: ndarray, shape (`deg` + 1,) or (`deg` + 1, `K`)Polynomial coefficients ordered from low to high. If
ywas 2-D, the coefficients in columnkof coef represent the polynomial fit to the data iny'sk-th column.[residuals, rank, singular_values, rcond]: listThese values are only returned if
full == Trueresiduals -- sum of squared residuals of the least squares fit
rank -- the numerical rank of the scaled Vandermonde matrix
singular_values -- singular values of the scaled Vandermonde matrix
rcond -- value of
rcond.
For more details, see numpy.linalg.lstsq.
Raises
: RankWarningRaised if the matrix in the least-squares fit is rank deficient. The warning is only raised if
full == False. The warnings can be turned off by:>>> import warnings >>> warnings.simplefilter('ignore', np.exceptions.RankWarning)
Notes
The solution is the coefficients of the polynomial p that minimizes the sum of the weighted squared errors
where the are the weights. This problem is solved by setting up the (typically) over-determined matrix equation:
where V is the weighted pseudo Vandermonde matrix of x, c are the coefficients to be solved for, w are the weights, and y are the observed values. This equation is then solved using the singular value decomposition of V.
If some of the singular values of V are so small that they are neglected (and full == False), a RankWarning will be raised. This means that the coefficient values may be poorly determined. Fitting to a lower order polynomial will usually get rid of the warning (but may not be what you want, of course; if you have independent reason(s) for choosing the degree which isn't working, you may have to: a) reconsider those reasons, and/or b) reconsider the quality of your data). The rcond parameter can also be set to a value smaller than its default, but the resulting fit may be spurious and have large contributions from roundoff error.
Polynomial fits using double precision tend to "fail" at about (polynomial) degree 20. Fits using Chebyshev or Legendre series are generally better conditioned, but much can still depend on the distribution of the sample points and the smoothness of the data. If the quality of the fit is inadequate, splines may be a good alternative.
Examples
import numpy as np from numpy.polynomial import polynomial as P x = np.linspace(-1,1,51) # x "data": [-1, -0.96, ..., 0.96, 1] rng = np.random.default_rng() err = rng.normal(size=len(x)) y = x**3 - x + err # x^3 - x + Gaussian noise c, stats = P.polyfit(x,y,3,full=True)✓
c # c[0], c[1] approx. -1, c[2] should be approx. 0, c[3] approx. 1 stats # note the large SSR, explaining the rather poor results✗
y = x**3 - x c, stats = P.polyfit(x,y,3,full=True)✓
c # c[0], c[1] ~= -1, c[2] should be "very close to 0", c[3] ~= 1 stats # note the minuscule SSR✗
See also
- numpy.linalg.lstsq
Computes a least-squares fit from the matrix.
- numpy.polynomial.chebyshev.chebfit
- numpy.polynomial.hermite.hermfit
- numpy.polynomial.hermite_e.hermefit
- numpy.polynomial.laguerre.lagfit
- numpy.polynomial.legendre.legfit
- polyval
Evaluates a polynomial.
- polyvander
Vandermonde matrix for powers.
- scipy.interpolate.UnivariateSpline
Computes spline fits.
Aliases
-
numpy.polynomial.Polynomial._fit -
numpy.polynomial.polynomial.polyfit