Tokens starting with t
file | # | command |
---|---|---|
ch10.1.do: | 13 [+] | makematrix t2a, from(r(Stat1) r(Stat2)): tabstat insider , |
file | # | command |
---|---|---|
ch10.1.do: | 16 [+] | matrix t2a = t2a , |
: | 23 [+] | mat t2aa = t2a \ (t2aa, temp) |
file | # | command |
---|---|---|
ch10.1.do: | 19 [+] | makematrix t2aa, from(r(Stat1) r(Stat2)): tabstat ceo , |
file | # | command |
---|---|---|
ch10.1.do: | 20 [+] | mat t2aa[1,1] = . |
: | 23 [+] | mat t2aa = t2a \ (t2aa, temp) |
: | 40 [+] | matrix colnames t2aa = Outsider Insider Total |
: | 41 [+] | matrix rownames t2aa = Observations CEO |
: | 42 [+] | matrix list t2aa |
: | 61 [+] | file write `hh' "Observations (\$N\$) & " (t2aa[1, 1]) " & " (t2aa[1, 2]) " & " (t2aa[1, 3]) " \\" _newline |
: | 63 [+] | file write `hh' "CEO (0/1) & N/A & " %7.3f (t2aa[2, 2]) " & " (t2aa[2, 3]) " \\" _newline |
file | # | command |
---|---|---|
ch10.1.do: | 29 [+] | qui makematrix t2b, from(r(Stat1) r(Stat2)): tabstat `v' , |
file | # | command |
---|---|---|
ch10.1.do: | 36 [+] | matrix `v' = t2b, `v'1, `v'2 , |
file | # | command |
---|---|---|
ch10.1.do: | 37 [+] | matrix t2bb = (nullmat(t2bb) \ `v') |
: | 43 [+] | matrix colnames t2bb = Outsider Insider N t_pval MW_pval |
: | 44 [+] | matrix list t2bb |
: | 65 [+] | file write `hh' "`inv`i'' & " %7.3f (t2bb[`i', 1]) " & " %7.3f (t2bb[`i', 2]) " & " (t2bb[`i', 3]) " & " %7.3f (t2bb[`i', 4]) " & " %7.3f (t2bb[`i', 5]) " \\" _newline |
: | 69 [+] | file write `hh' "Departed (0/1) & " %7.3f (t2bb[`i', 1]) " & " %7.3f (t2bb[`i', 2]) " & " (t2bb[`i', 3]) " & " %7.3f (t2bb[`i', 4]) " & " %7.3f (t2bb[`i', 5]) " \\" _newline |
: | 72 [+] | file write `hh' "`inv`i'' & " %7.3f (t2bb[`i', 1]) " & " %7.3f (t2bb[`i', 2]) " & " (t2bb[`i', 3]) " & " %7.3f (t2bb[`i', 4]) " & " %7.3f (t2bb[`i', 5]) " \\" _newline |
file | # | command |
---|---|---|
ch10.1.do: | 43 [+] | matrix colnames t2bb = Outsider Insider N t_pval MW_pval |
file | # | command |
---|---|---|
ch5.01.do: | 45 [+] | estimates table model1 model2 model3 model4 , /// b(%7.3f) se(%6.3g) p(%4.3f) |
: | 48 [+] | estimates table model4 model1 model3 model2 , /// b(%7.3g) star label title("Models of sulphur dioxide concentration") |
: | 66 [+] | estimates table * |
file | # | command |
---|---|---|
ch9.01.do: | 87 [+] | outtable using ch9.02t , /// format(%9.3f) center caption("Grunfeld company statistics") |
file | # | command |
---|---|---|
ch9.01.do: | 22 [+] | matrix table1 = J(`ncomp', 7, 0) |
: | 30 [+] | matrix table1[`i', 1] = r(p25) |
: | 31 [+] | matrix table1[`i', 2] = r(p50) |
: | 32 [+] | matrix table1[`i', 3] = r(p75) |
: | 34 [+] | matrix table1[`i', 4] = r(rho) |
: | 36 [+] | matrix table1[`i', 5] = r(rho) |
: | 38 [+] | matrix table1[`i', 6] = _b["L.kstock"] |
: | 39 [+] | matrix table1[`i', 7] = _se["L.kstock"] |
: | 42 [+] | matrix rownames table1 = `colist' |
: | 43 [+] | matrix colnames table1 = p25 p50 p75 r_invest r_kap beta_k se_k |
: | 86 [+] | mat list table1 , |
: | 120 [+] | local rows = rowsof(table1) |
: | 121 [+] | local cols = colsof(table1) |
: | 127 [+] | file write `fh' (table1[`i', `j']) " " |
: | 135 [+] | local rows = rowsof(table1) |
: | 136 [+] | local cols = colsof(table1) |
: | 140 [+] | local coln : colnames table1 |
: | 141 [+] | local rown : rownames table1 |
: | 147 [+] | file write `fh' (table1[`i', `j']) " " |
file | # | command |
---|---|---|
ch10.1.do: | 53 [+] | file open `hh' using table2.tex , |
file | # | command |
---|---|---|
ch10.4.do: | 55 [+] | merge tabrv using f10_4_2 f10_4_3 , |
: | 58 [+] | merge tabrv using f10_4_2a , |
: | 61 [+] | merge tabrv using f10_4_3a , |
file | # | command |
---|---|---|
ch10.4.do: | 5 [+] | generate tabrv = upper(substr(town, 1, 3)) |
file | # | command |
---|---|---|
ch10.4.do: | 10 [+] | scatter so2 temp , /// saving(fig10_4_1, replace) scheme(s2mono) |
: | 12 [+] | scatter so2 precip , /// by(hightemp) saving(fig10_4_2, replace) scheme(s2mono) |
: | 14 [+] | scatter so2 wind , /// by(hightemp) saving(fig10_4_3, replace) scheme(s2mono) |
: | 19 [+] | scatter so2 precip , /// by(hightemp) saving(fig10_4_2, replace) scheme(s2mono) |
file | # | command |
---|---|---|
ch10.4.do: | 27 [+] | sort tabrv |
: | 35 [+] | sort tabrv |
: | 39 [+] | sort tabrv |
: | 47 [+] | sort tabrv |
: | 51 [+] | sort tabrv |
: | 57 [+] | sort tabrv |
: | 60 [+] | sort tabrv |
file | # | command |
---|---|---|
ch10.1.do: | 13 [+] | makematrix t2a, from(r(Stat1) r(Stat2)): tabstat insider , |
: | 19 [+] | makematrix t2aa, from(r(Stat1) r(Stat2)): tabstat ceo , |
file | # | command |
---|---|---|
ch10.2.do: | 4 [+] | label def ind 1 Kappa 2 Lambda 3 Nu 4 Xi 5 Tau 6 Upsilon 7 Phi 8 Chi 9 Psi |
ch14.3.do: | 4 [+] | label def ind 1 Kappa 2 Lambda 3 Nu 4 Xi 5 Tau 6 Upsilon 7 Phi 8 Chi 9 Psi |
: | 95 [+] | label def ind 1 Kappa 2 Lambda 3 Nu 4 Xi 5 Tau 6 Upsilon 7 Phi 8 Chi 9 Psi |
file | # | command |
---|---|---|
ch8.2.do: | 102 [+] | format date %td |
ch10.6.do: | 46 [+] | format rollover %td |
file | # | command |
---|---|---|
ch4.26.do: | 46 [+] | label variable `x' "Student/teacher ratio (percentiles `pct')" |
ch8.2.do: | 15 [+] | label var avgsal "Average teacher salary" |
file | # | command |
---|---|---|
ch13.01.do: | 139 [+] | list t tenn quarter tennA3 year tennA12 in 1/12 , |
: | 233 [+] | list t tenn quarter tennA3 tennS3 tennF3 tennL3 in 1/12 , |
file | # | command |
---|---|---|
ch13.01.do: | 139 [+] | list t tenn quarter tennA3 year tennA12 in 1/12 , |
file | # | command |
---|---|---|
ch14.4.do: | 113 [+] | list t tenn quarter tennAlog3 tennSsqrt3 in 1/12 , |
file | # | command |
---|---|---|
ch13.01.do: | 233 [+] | list t tenn quarter tennA3 tennS3 tennF3 tennL3 in 1/12 , |
file | # | command |
---|---|---|
ch13.01.do: | 233 [+] | list t tenn quarter tennA3 tennS3 tennF3 tennL3 in 1/12 , |
file | # | command |
---|---|---|
ch13.01.do: | 233 [+] | list t tenn quarter tennA3 tennS3 tennF3 tennL3 in 1/12 , |
file | # | command |
---|---|---|
ch14.4.do: | 113 [+] | list t tenn quarter tennAlog3 tennSsqrt3 in 1/12 , |
file | # | command |
---|---|---|
ch10.1.do: | 46 [+] | local inv Audit Defendant Ins\_Trading Departed Age Tenure Voting\_Share |
: | 50 [+] | local inv6 "Board Tenure (Years)" |
file | # | command |
---|---|---|
ch5.01.do: | 51 [+] | estimates for model1 model2 model3 model4: test temp = -1.6 |
ch10.1.do: | 59 [+] | file write `hh' "\hline & Mean & Mean & \$N\$ & \$t\$ test & Mann--Whitney \\" _newline |
file | # | command |
---|---|---|
master.do: | 50 [+] | do teststruct.do |
file | # | command |
---|---|---|
tipBizday.do: | 4 [+] | capture erase bizday1.log.tex |
: | 14 [+] | capture erase bizday2.log.tex |
: | 20 [+] | capture erase bizday3.log.tex |
: | 27 [+] | capture erase bizday4.log.tex |
file | # | command |
---|---|---|
spinst_itsp.ado: | 22 [+] | cap noi spinst_itsp_wrk textbarplot http: //fmwww.bc.edu/repec/bocode/t |
file | # | command |
---|---|---|
itsp.do: | 17 [+] | ssc install textbarplot |
file | # | command |
---|---|---|
spinst_itsp.ado: | 28 [+] | di in smcl "{p}{err}At least one of the packages was not able to be " /// "installed. Try typing {cmd:spinst_itsp} again. If that " /// "fails, look at the output of the error message above to " /// "diagnose the problem. Perhaps you have an out-of-date " /// "version of the package already installed. In that case, " /// "type {cmd:adoupdate} to update it." |
file | # | command |
---|---|---|
ch3.10.do: | 4 [+] | display "The defined levels of anxiety are: `anxlevel'" |
file | # | command |
---|---|---|
ch9.06.do: | 26 [+] | esttab _all using lwage`y'.tex , /// substitute("_cons" "Constant" "eta_educ" "$\eta_{educ}$" /// "etase" "$\eta_{se}$") |
file | # | command |
---|---|---|
spinst_itsp.ado: | 28 [+] | di in smcl "{p}{err}At least one of the packages was not able to be " /// "installed. Try typing {cmd:spinst_itsp} again. If that " /// "fails, look at the output of the error message above to " /// "diagnose the problem. Perhaps you have an out-of-date " /// "version of the package already installed. In that case, " /// "type {cmd:adoupdate} to update it." |
file | # | command |
---|---|---|
ch3.10.do: | 38 [+] | display "There are `wds' anxiety levels:" |
: | 47 [+] | display "There are `wds' anxiety levels:" |
file | # | command |
---|---|---|
ch2.0.do: | 107 [+] | note popsize: value label popsize defined for this variable |
file | # | command |
---|---|---|
ch8.2.do: | 54 [+] | label var invrate "Three-year average investment rate" |
file | # | command |
---|---|---|
ch6.5.do: | 34 [+] | esttab three four , |
file | # | command |
---|---|---|
ch6.5.do: | 29 [+] | estimates store three |
file | # | command |
---|---|---|
ch9.06.do: | 26 [+] | esttab _all using lwage`y'.tex , /// substitute("_cons" "Constant" "eta_educ" "$\eta_{educ}$" /// "etase" "$\eta_{se}$") |
file | # | command |
---|---|---|
ch8.2.do: | 55 [+] | tsline invrate if inrange(company, 1, 4) & year >= 1937 , /// scheme(s2mono) |
: | 131 [+] | tsline ssq , |
ch9.08.do: | 11 [+] | graph combine fig9_2a fig9_2d , |
ch9.09.do: | 8 [+] | graph combine fig9_2aa fig9_2bb , |
: | 14 [+] | graph combine fig9_2a fig9_2b , |
file | # | command |
---|---|---|
ch3.10.do: | 89 [+] | mat list result , |
ch9.01.do: | 86 [+] | mat list table1 , |
file | # | command |
---|---|---|
ch9.01.do: | 122 [+] | local timestamp "Matrix created `c(current_date)' `c(current_time)'" |
: | 137 [+] | local timestamp "Matrix created `c(current_date)' `c(current_time)'" |
file | # | command |
---|---|---|
tipBizday.do: | 9 [+] | keep if tin(1aug2005,) |
file | # | command |
---|---|---|
ch10.4.do: | 10 [+] | scatter so2 temp , /// saving(fig10_4_1, replace) scheme(s2mono) |
: | 12 [+] | scatter so2 precip , /// by(hightemp) saving(fig10_4_2, replace) scheme(s2mono) |
: | 14 [+] | scatter so2 wind , /// by(hightemp) saving(fig10_4_3, replace) scheme(s2mono) |
: | 19 [+] | scatter so2 precip , /// by(hightemp) saving(fig10_4_2, replace) scheme(s2mono) |
file | # | command |
---|---|---|
ch5.01.do: | 74 [+] | esttab using esttab_example.tex , /// alignment(D{.}{.}{-1}) replace |
file | # | command |
---|---|---|
ch5.01.do: | 190 [+] | scatter expp1992 expp1998 sal , /// legend(position(5) ring(0) label(1 "1992") label(2 "1998")) |
ch12.1.do: | 17 [+] | twoway rarea lo hi end , /// || tsline sum, legend(off) scheme(s2mono) |
file | # | command |
---|---|---|
ch10.4.do: | 8 [+] | label def tlab 0 "below mean temp" 1 "above mean temp" |
: | 9 [+] | label values hightemp tlab |
file | # | command |
---|---|---|
tipBizday.do: | 31 [+] | format %tm month |
file | # | command |
---|---|---|
ch4.26.do: | 42 [+] | quietly replace `seyex1' = `eyex' + tmfx*se[1, 1] in `i' |
: | 43 [+] | quietly replace `seyex2' = `eyex' - tmfx*se[1, 1] in `i' |
file | # | command |
---|---|---|
ch6.6.do: | 39 [+] | tscollap (last) aireoq=air (sum) airsum=air (mean) airavg=air , |
file | # | command |
---|---|---|
ch9.06.do: | 26 [+] | esttab _all using lwage`y'.tex , /// substitute("_cons" "Constant" "eta_educ" "$\eta_{educ}$" /// "etase" "$\eta_{se}$") |
file | # | command |
---|---|---|
spinst_itsp.ado: | 28 [+] | di in smcl "{p}{err}At least one of the packages was not able to be " /// "installed. Try typing {cmd:spinst_itsp} again. If that " /// "fails, look at the output of the error message above to " /// "diagnose the problem. Perhaps you have an out-of-date " /// "version of the package already installed. In that case, " /// "type {cmd:adoupdate} to update it." |
file | # | command |
---|---|---|
cb5a.do: | 17 [+] | egen totcand = total(last) , |
: | 30 [+] | egen totcand = total(indivcount) , |
ch4.4.do: | 33 [+] | by fam: egen nadult = total(age >= 18) |
: | 34 [+] | by fam: egen nchild = total(age <= 17) if age <= 17 |
: | 36 [+] | by fam: egen nboys = total(age <= 17 & !female) if age <= 17 |
: | 38 [+] | by fam: egen nbros = total(age <= 17 & !female) if age <= 17 |
file | # | command |
---|---|---|
cb5a.do: | 17 [+] | egen totcand = total(last) , |
: | 30 [+] | egen totcand = total(indivcount) , |
file | # | command |
---|---|---|
cb5a.do: | 31 [+] | tabstat totcand , |
file | # | command |
---|---|---|
ch2.0.do: | 128 [+] | by region: generate totpop = sum(pop) |
file | # | command |
---|---|---|
ch2.0.do: | 129 [+] | list region state pop totpop , |
: | 131 [+] | by region: list region totpop if _n == _N |
file | # | command |
---|---|---|
reshapeTip.do: | 12 [+] | reshape long Yr , |
: | 15 [+] | reshape wide Yr , |
file | # | command |
---|---|---|
reshapeTip.do: | 4 [+] | input str8 country str7 tradeflow Yr1990 Yr1991 |
file | # | command |
---|---|---|
ch14.4.do: | 110 [+] | aggreg2 tenn , // calculate quarterly averages of log(tenn) |
: | 111 [+] | aggreg2 tenn , // calculate quarterly sum of sqrt(tenn) |
file | # | command |
---|---|---|
tipBizday.do: | 22 [+] | label var dDTB3 "Daily change in 3-mo Treasury rate" |
file | # | command |
---|---|---|
spinst_itsp.ado: | 28 [+] | di in smcl "{p}{err}At least one of the packages was not able to be " /// "installed. Try typing {cmd:spinst_itsp} again. If that " /// "fails, look at the output of the error message above to " /// "diagnose the problem. Perhaps you have an out-of-date " /// "version of the package already installed. In that case, " /// "type {cmd:adoupdate} to update it." |
file | # | command |
---|---|---|
spinst_itsp.ado: | 23 [+] | cap noi spinst_itsp_wrk tscollap http: //fmwww.bc.edu/repec/bocode/t |
file | # | command |
---|---|---|
itsp.do: | 3 [+] | ssc install tscollap |
file | # | command |
---|---|---|
spinst_itsp.ado: | 24 [+] | cap noi spinst_itsp_wrk tsmktim http: //fmwww.bc.edu/repec/bocode/t |
file | # | command |
---|---|---|
itsp.do: | 4 [+] | ssc install tsmktim |
file | # | command |
---|---|---|
ch12.4.do: | 78 [+] | ml model d0 mynormal_lf_d0 (mu: price = mpg weight turn) /lnsigma , /// maximize nolog diparm(lnsigma, exp label("sigma")) |
: | 122 [+] | qui regress price mpg weight turn |
: | 125 [+] | ml model d0 mynormal_lf_d0_c1 (a:) (mu: price = weight turn) /lnsigma , /// maximize nolog diparm(lnsigma, exp label("sigma")) |
file | # | command |
---|---|---|
ch11.01.do: | 427 [+] | mynormal price mpg weight turn |
ch12.4.do: | 58 [+] | mynormal price mpg weight turn |
file | # | command |
---|---|---|
ch6.5.do: | 21 [+] | esttab one two , |
file | # | command |
---|---|---|
ch6.5.do: | 19 [+] | estimates store two |
file | # | command |
---|---|---|
ch12.6.do: | 39 [+] | type onespell_part1.txt |
: | 41 [+] | type onespell_part2.txt |
file | # | command |
---|---|---|
spinst_itsp.ado: | 44 [+] | di as smcl "{txt} package {res:`package'} from {res:`from'}" |
file | # | command |
---|---|---|
spinst_itsp.ado: | 36 [+] | di as smcl "{txt}Installation complete." |
file | # | command |
---|---|---|
spinst_itsp.ado: | 5 [+] | di as smcl "{txt}Installing ..." |
file | # | command |
---|---|---|
spinst_itsp.ado: | 28 [+] | di in smcl "{p}{err}At least one of the packages was not able to be " /// "installed. Try typing {cmd:spinst_itsp} again. If that " /// "fails, look at the output of the error message above to " /// "diagnose the problem. Perhaps you have an out-of-date " /// "version of the package already installed. In that case, " /// "type {cmd:adoupdate} to update it." |