# delimit ; set memory 5000; *************************************************; * Administrative Commands; *************************************************; set more off; clear; log using ch5_ee.log,replace; *************************************************; * Read in the Dataset; *************************************************; use cps98.dta; desc; **************************************************************; *; *; **************************************************************; * Question 1; regress ahe age, robust; dis "Adjusted Rsquared = " _result(8); * Question 2; regress ahe age female bachelor, robust; dis "Adjusted Rsquared = " _result(8); * Question 5; test female bachelor; *Question 6; regress age female bachelor; log close; clear; exit;