Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I would like to do screening regression analysis in Excel. Can this be done
and how ? Do I need an add-in of some kind ? Any help appreciated. Grinch |
#2
![]() |
|||
|
|||
![]()
Within limits, you can do it. Help for LINEST is extremely misleading,
it fits general linear models, not just straight lines. http://www.stfx.ca/people/bliengme/E...Polynomial.htm shows how to fit a polynomial. In general, you just have to pass the X matrix (less the initial column of 1's for the grand mean). If you request statistics (TRUE as 4th argument), then the second output line will be the standard errors of the coefficients (1st line of output). That will allow you to test significance of any coefficient. The biggest limit is that larger models can easily become ill-conditioned. Prior to 2003, LINEST directly solves the normal equations, instead of doing an SVD on X. The result is that numerical singularity depends on the condition number of X'X instead of X (i.e. LINEST would need quad-precision to do some problems that S-Plus and R can do in double-precision). SAS (other than PROC ORTHOREG) also works with X'X, but it warns you of numerical singularity instead of charging ahead and producing nonsense results. Another limit is that LINEST will not fit more than 17 parameters (the intercept counts, if requested) even though MINVERSE will attempt to invert up to a 52x52 X'X matrix. Jerry Grinch wrote: I would like to do screening regression analysis in Excel. Can this be done and how ? Do I need an add-in of some kind ? Any help appreciated. Grinch |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Difference in number of Excel NewsGroups | Excel Discussion (Misc queries) | |||
How do I add Data Analysis Tool Pak to my Excel 2000? | Excel Discussion (Misc queries) | |||
How do I prepare a comparitive analysis graph in Excel | Charts and Charting in Excel | |||
I cannot load the Analysis Toolpak in Excel 2003 like Microsoft H. | Excel Discussion (Misc queries) |