R 2 사이에 관계가 있는지 궁금합니다 와 F-Test .
일반적으로
F- 검정은 단지 가설을 입증합니다.
와 F- 검정 사이에는 관계가 있습니까?
R 2 사이에 관계가 있는지 궁금합니다 와 F-Test .
일반적으로
F- 검정은 단지 가설을 입증합니다.
와 F- 검정 사이에는 관계가 있습니까?
답변:
모든 가정이 유지되고 대한 올바른 형식이 있으면 일반적인 F 통계량을 F = R 2 로 계산할 수 있습니다 . 그런 다음이 값을 F 테스트를 수행하기 위해 적절한 F 분포와 비교할 수 있습니다. 이것은 기본 대수로 도출 / 확인 될 수 있습니다.
회귀 설정에서 F 통계량은 다음과 같이 표현됩니다.
distribution with degrees of freedom and .
Also recall that
simple algebra will tell you that
where F is the F statistic from above.
This is the theoretical relationship between the F statistic (or the F test) and .
The practical interpretation is that a bigger lead to high values of F, so if is big (which means that a linear model fits the data well), then the corresponding F statistic should be large, which means that that there should be strong evidence that at least some of the coefficients are non-zero.
Intuitively, I like to think that the result of the F-ratio first gives a yes-no response to the the question, 'can I reject ?' (this is determined if the ratio is much larger than 1, or the p-value < ).
Then if I determine I can reject , then indicates the strength of the relationship between.
In other words, a large F-ratio indicates that there is a relationship. High then indicates how strong that relationship is.
Also, quickly:
R2 = F / (F + n-p/p-1)
Eg, The R2 of a 1df F test = 2.53 with sample size 21, would be:
R2 = 2.53 / (2.53+19) R2 = .1175