用stata走事件研究法这块总过不去 显示invalid syntax
gen predicted_return=.
egen id=group(company_id)
forvalues i=1(1)N {
1 id company_id if id==`i'&dif==0
reg ret market_return if id==`i'& estimation_window==1
predict p if id==`i'
replace predicted_return=p if id==`i'&event_window==1
drop p
}