Polynomial regression

User avatar
AlanMiller
BronzeLounger
Posts: 1545
Joined: 26 Jan 2010, 11:36
Location: Melbourne, Australia

Polynomial regression

Post by AlanMiller »

I'm wondering if XL 2003 has the capability to fit very high degree polynomials to X-Y data. For instance, if I have 100 data points, is it possible to calculate coefficients for a polynomial of degree 99? If so, a starting point ultraquick tutorial would be appreciated. :please:

Alan

User avatar
HansV
Administrator
Posts: 78629
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Polynomial regression

Post by HansV »

No. You'd need to use LINEST with 1, x, x^2, x^3 etc. as x variables ("known x-es"). The maximum number of x variables supported is 16, and even then the results would probably not be very dependable. This corresponds to a maximum degree of 15.
Best wishes,
Hans

User avatar
AlanMiller
BronzeLounger
Posts: 1545
Joined: 26 Jan 2010, 11:36
Location: Melbourne, Australia

Re: Polynomial regression

Post by AlanMiller »

OK, I think I can sort that with code. How about plotting the result as a smooth curve? Are there any alternatives (add-ins etc.) that are a better choice than Chart Wizard? I'd want to show the original data points and some other points on top of the curve.

Alan

User avatar
HansV
Administrator
Posts: 78629
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Polynomial regression

Post by HansV »

A line chart or scatter chart can draw a smooth line, and you could use another series that only plots markers, no line, for the individual points.
Best wishes,
Hans

User avatar
AlanMiller
BronzeLounger
Posts: 1545
Joined: 26 Jan 2010, 11:36
Location: Melbourne, Australia

Re: Polynomial regression

Post by AlanMiller »

HansV wrote:A line chart or scatter chart can draw a smooth line, and you could use another series that only plots markers, no line, for the individual points.
:cheers:

Alan