Below is my code for a regression analysis.
Reg <- lm(hgc94~father_hgc+edex79, data=NLSY_education)
summary(Reg)
After this process, how could I calculate/report only the first two respondent's residual among 200 respondents?
Below is my code for a regression analysis.
Reg <- lm(hgc94~father_hgc+edex79, data=NLSY_education)
summary(Reg)
After this process, how could I calculate/report only the first two respondent's residual among 200 respondents?