Suggested solutions and other course documents
- PS 1 solutions
- PS 2 solutions (Example Stata files)
- Exam 1 solutions
- For problem set 3:
- A fixed version of the handout from class
- The assignment
- Solutions (to follow)
- Bootstrapping tip: Try the following code in Stata 10 or greater. This will allow you to use bootstrapped standard errors to calculate t-statistics, as well as use the percentile method to obtain confidence intervals from the boostrapped distribution of the coefficient estimates.
set seed 11111
reg lwage educ age lambda if inlf, vce(bootstrap, reps(1000))
estat bootstrap, percentile
Stata resources