1 / 8

Interpolation, extrapolation and regression

Interpolation, extrapolation and regression. Interpolation is mathematically contrasted to regression or least-squares fit As important is the contrast between interpolation and extrapolation Extrapolation occurs when we are outside the convex hull of the data points

stefan
Download Presentation

Interpolation, extrapolation and regression

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Interpolation, extrapolation and regression • Interpolation is mathematically contrasted to regression or least-squares fit • As important is the contrast between interpolation and extrapolation • Extrapolation occurs when we are outside the convex hull of the data points • For high dimensional spaces we must have extrapolation!

  2. 2D example x = rand(20,1); y = rand(20,1); plot(x,y, '.'); k = convhull(x,y) hold on, plot(x(k), y(k), '-r'), hold off Number the points in the Figure and give a couple of Alternative sets of alphas Approximately for the point (0.4,0.4)

  3. Prediction variance • Linear regression model • Define then • With some algebra • Standard error

  4. Example 4.2.1 • For a linear polynomial RS y=b1+b2x1+b3x2find the prediction variance in the region • (a) For data at three vertices (omitting (1,1))

  5. Interpolation vs. Extrapolation • At origin . At 3 vertices . At (1,1)

  6. Standard error contours • Minimum error • What is special about this point x=[-1 -1 1]; y=[-1 1 -1]; [X,Y]=meshgrid(-1:0.1:1, -1:0.1:1); Z=sqrt(0.5*(1+X+Y+X.^2+Y.^2+X.*Y)); v=linspace(0.6,1.8,7) scatter(x,y,'filled'); grid on; hold on [C,h]=contour(X,Y,Z,v); clabel(C,h)

  7. Data at four vertices • Now • And • Error at vertices • At the origin minimum is • How can we reduce error without adding points?

  8. Comparison Three points Four points

More Related