Hello everyone, I would like to ask a question about the PowerPoint slides for Chapter 8 of Wooldridge's Introductory Econometrics. In the slide, using the dataset WAGE1, the calculated F-statistic is 17.95, but the one I calculated is 42.7? 
Here is my code:
Here is my code:
Code:
. use WAGE1, clear . . reg lwage educ exper expersq Source | SS df MS Number of obs = 526 -------------+---------------------------------- F(3, 522) = 74.67 Model | 44.5393713 3 14.8464571 Prob > F = 0.0000 Residual | 103.79038 522 .198832146 R-squared = 0.3003 -------------+---------------------------------- Adj R-squared = 0.2963 Total | 148.329751 525 .28253286 Root MSE = .44591 ------------------------------------------------------------------------------ lwage | Coefficient Std. err. t P>|t| [95% conf. interval] -------------+---------------------------------------------------------------- educ | 0.0904 0.0075 12.10 0.000 0.0757 0.1050 exper | 0.0410 0.0052 7.89 0.000 0.0308 0.0512 expersq | -0.0007 0.0001 -6.16 0.000 -0.0009 -0.0005 _cons | 0.1280 0.1059 1.21 0.227 -0.0801 0.3361 ------------------------------------------------------------------------------ . test exper expersq ( 1) exper = 0 ( 2) expersq = 0 F( 2, 522) = 42.70 Prob > F = 0.0000 Best wishes! Raymond

Comment