I've read the paper and it is indeed helpful in clearing up my confusion regarding the approach, thank you Clyde.
-
Login or Register
- Log in with
label define era 1 "2007-2012" 2 "2013-2018" assert inrange(ROK, 2007, 2018) gen byte era:era = cond(inrange(ROK, 2007, 2012), 1, 2) by ICO era (ROK), sort: egen mean_ROA = mean(ROA) by ICO era (ROK): gen diff_ROA = mean_ROA[_N] - mean_ROA[1]
Comment