Polynomial regression Flashcards
1
Q
New linearity assumption for polynomial regression
A
E[Yi|Zi] = f(zi|β0,…βl) = Σj=0l βj zij = Σj=0l βj Bj(zi) BASES
2
Q
ML estimation of polynomial regression
A
β^= (Z’Z)-1 Z’Y
Since columns highly correlated, better use orthogonal polynomials that will not however change the conclusions nor the fitted model
3
Q
Hypothesis testing for nested polynomial regression models
A
F = ΔSSE/SSE * (n-d)/r| H0 ∼ Fr,n-d
d = l+1
4
Q
Polynomial regression in R
A
p = poly(z, degree=l, raw=F) #If =T, not orthogonal
fit = lm(y~p) #l+1 parameters
anova(fitmin, fitmax)
lht(fitmax, C, d, test=”F”)