1 Star 0 Fork 11

dingxiuhao/Stata-Event_Study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Benchmarks.do 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
/* for testing rolling_beta and fm */
discard
/* {{{ data */
webuse grunfeld, clear
/* expand 1000, generate(new) */
/* bysort company time (new) : generate newsum = sum(new) */
/* egen newcompany = group(newsum company) */
/* xtset newcompany year */
/* }}} */
/* {{{ rolling beta benchmarks */
/* timer clear */
/* preserve */
/* timer on 1 */
/* rolling _b, clear window(5) nodots : regress mvalue kstock */
/* timer off 1 */
/* list in 1/20 */
/* restore */
/* preserve */
/* timer on 2 */
/* rolling_beta2 mvalue kstock, window(5) */
/* timer off 2 */
/* list in 1/20 */
/* restore */
/* preserve */
/* timer on 3 */
/* rolling_beta mvalue kstock, long(5) short(5) */
/* timer off 3 */
/* list in 1/20 */
/* restore */
/* preserve */
/* timer on 4 */
/* rolling_beta mvalue kstock, long(5) faster */
/* timer off 4 */
/* list in 1/20 */
/* restore */
/* timer list */
/* /1* timer list *1/ */
/* /1* 1: 1094.44 / 1 = 1094.4420 *1/ */
/* /1* 2: 0.14 / 1 = 0.1410 *1/ */
/* /1* 3: 0.11 / 1 = 0.1130 *1/ */
/* /1* 4: 0.17 / 1 = 0.1730 *1/ */
/* }}} */
/* {{{ Fama-MacBeth benchmarks */
timer clear
eststo clear
/* my code */
timer on 1
fm mvalue kstock invest, estimator(regress) lags(4)
eststo
timer off 1
/* xtfmb (ssc install xtfmb) */
timer on 2
xtfmb mvalue kstock invest, lag(4)
eststo
timer off 2
/* manually */
timer on 3
preserve
statsby _b e(N) e(r2), clear by(year) : regress mvalue kstock invest
tabstat *, stat(mean semean)
restore
timer off 3
timer list
esttab
/* }}} */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dingxiuhao/Stata-Event_Study.git
git@gitee.com:dingxiuhao/Stata-Event_Study.git
dingxiuhao
Stata-Event_Study
Stata-Event_Study
master

搜索帮助