* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; /* * 4 Sept 2006 CEO in Japan project Table 10. COLLEGES. This is using the Capitalization variable. run by Eric. I used STATA 9 Before running this, make sure that ListedCo7.dta exists in the same directory as this DO file. */ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; #delimit ; * This says that the semicolon denotes the end of a line of command. All lines must end with semicolons after this; log using tab10.log, replace; set more 1; *This should stop the pauses; *To keep going regardless of errors, use DO mYFILE, nostop; * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; set memory 50m; set matsize 120; * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; use ListedCo7.dta; * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; *10a: COLLEGES ; tobit LnTax04Tb LnCapD4 OpIn04Cap GrSP0403Jun multipos optnprgm OffAge05 FatCat LnCapD4FC ProfitFC GrSPJunFC MulPosFC ExSPFC OptnPmFatCat ExcAgeFC utokyo ukyoto othimpu hitotsu keio waseda Tab7OthU UTokyoFC UKyotoFC OthImpFC HitotsuFC KeioFC WasedaFC T7OthUFC secactg Indus1-Indus31 , ll; * mfx compute, predict (ys(9.2103405,.)) at (median) varlist(LnCapD4 OpIn04Cap GrSP0403Jun multipos optnprgm OffAge05 FatCat LnCapD4FC ProfitFC GrSPJunFC MulPosFC ExSPFC OptnPmFatCat ExcAgeFC utokyo ukyoto othimpu hitotsu keio waseda Tab7OthU UTokyoFC UKyotoFC OthImpFC HitotsuFC KeioFC WasedaFC T7OthUFC secactg ) ; outreg using temp.txt, replace bdec(3) coefastr 3aster ; * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--; log close; clear; * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--;