A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Scoobby wrote:
With reference to the LINEST function, what does the standard error in the slope and intercept represent? How does it apply to 'real life'?
Take a look at http://en.wikipedia.org/wiki/Simple_linear_regression, especially the sections "Confidence Intervals", "Normality Assumption" and "Numerical Example".
For "large n", it means we are about 68.3% confident that the actual slope, for example, is between the estimated slope plus-or-minus the standard error of the slope. More generally, +/-stdErr*NORMSINV((1-pctConf)/2)
In practice, we should use the Student's-t distribution instead of the normal distribution: +/-stdErr*TINV(1-pctConf,df), where df=n-2.
Scoobby wrote:
If I measure a sample against this regression line to obtain the predicted value, and I need to report it with uncertainty limits, do I use the LINEST standard errors
I would use the RSQ value. It does not translate into confidence limits per se. But it is a measure of fit.
Take a look at http://en.wikipedia.org/wiki/Coefficient_of_determination, notably the section "Interpretation" and the sections starting with "Relation to Unexplained Variance".
Scoobby wrote:
I used the LINEST function to return regression coefficients on a best fit line but when I plotted the -ve and +ve standard error curves against the best fit line, I found that [...] (always difficult to explain without a diagram) all the actual data points fit VERY comfortably within the +/- standard error curves
First, you might look at the formula under "the confidence band has hyperbolic form given by the equation" in the aforementioned "Simple Linear Regression" wikipage.
Second, to show us your work ("explain [with] a diagram"), you can post the URL of an example Excel file that you uploaded to a file-sharing website. The following is a list of some free file-sharing websites; or use your own.
Box.Net: http://www.box.net/files
Windows Live Skydrive: http://skydrive.live.com
MediaFire: http://www.mediafire.com
FileFactory: http://www.filefactory.com
FileSavr: http://www.filesavr.com
RapidShare: http://www.rapidshare.com
You can also use this forum's new Add Image feature on the toolbar of the reply-box to paste an image into your posting. It does require that you save a local JPG file (preferably) first. But an Excel file is preferable.