electricpete
Electrical
- May 4, 2001
- 16,774
I used linest function to do Multiple Linear Regression of a single independent variable (Y=vibration) against two independent variables (x1 = date, x2 = temperature)
Y = m1*x1 + m2*x2 + b
The output paramters have the following descriptions:
(m2 = slope2) (m1 = slope1)
sd(m2) sd(m1) sd(b)
R^2 sd
f d.o.f.
SS regression SS residual
Here are the numerical values:
0.0013 -0.0027 -52.88529808
0.0004 0.0006 16.28032118
0.88050 0.014
51.6 14
0.0214 0.0029
My question: What is the meaning of f? I vaguely recall that it is something like a goodness of fit test. I think I can find a chart of f in the back of a book, but I don’t remember the meaning.
To my way of thinking, most of what I need to know about the match of the data to the model is told in the other parameters. Since the estimated parameters m1 and m2 are more than 3 times their standard deviation, the variables x1 and x2 probably do contribute to the changes in Y (there is very small probability that the actual slope is 0). R^2=0.88 means 88% of the variability (sum of squares of residuals) is accounted for by the model.
What else can I tell about the results based on f?
Thanks.
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
Y = m1*x1 + m2*x2 + b
The output paramters have the following descriptions:
(m2 = slope2) (m1 = slope1)
sd(m2) sd(m1) sd(b)
R^2 sd
f d.o.f.
SS regression SS residual
Here are the numerical values:
0.0013 -0.0027 -52.88529808
0.0004 0.0006 16.28032118
0.88050 0.014
51.6 14
0.0214 0.0029
My question: What is the meaning of f? I vaguely recall that it is something like a goodness of fit test. I think I can find a chart of f in the back of a book, but I don’t remember the meaning.
To my way of thinking, most of what I need to know about the match of the data to the model is told in the other parameters. Since the estimated parameters m1 and m2 are more than 3 times their standard deviation, the variables x1 and x2 probably do contribute to the changes in Y (there is very small probability that the actual slope is 0). R^2=0.88 means 88% of the variability (sum of squares of residuals) is accounted for by the model.
What else can I tell about the results based on f?
Thanks.
=====================================
Eng-tips forums: The best place on the web for engineering discussions.