Thanks! You really helped a lot. Now I need to know how to develop a
confidence interval based on that equation based on a certain independent
variable.
If you have an earlier version than Excel 2003, you may prefer the formulas at
http://groups.google.com/group/microsoft.public.excel.worksheet.functions/msg/d6
a03470e7a1c650
Similarly, the numerically best way to calculate yhat, the predicted value
at x is
yhat = AVERAGE(ydata) +(x-AVERAGE(xdata))*SLOPE(ydata,xdata)
instead of FORECAST, or using the intercept estimate.
Regardless, the confidence bound at x (not necessarily an observed value)
for the regression line is
yhat +/- TINV(1-conf,df) *STEYX(ydata,xdata)
*SQRT(1/n+(x-AVERAGE(xdata))^2/DEVSQ(xdata))
Jerry
> Thanks! You really helped a lot. Now I need to know how to develop a
> confidence interval based on that equation based on a certain independent
[quoted text clipped - 14 lines]
> > > of
> > > variables based on using a different independent variabe?