- Using just the years 1990 and 1993, estimate the equation from part (i) by pooled OLS. Ignore the serial correlation problem in the composite errors. Do you find any evidence for a deterrent effect?
Code:
reg mrdrte d93 exec unem if year==90 | 93
The correct code (at least shows the correct regression estimate) is:
Code:
reg mrdrte d93 exec unem if inrange(year,90,93)
Many thanks in advance!
0 Response to Inquire about "regress is"
Post a Comment