1 Star 1 Fork 11

连享会/Stata-Event_Study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Wilcoxon2.ado 754 Bytes
一键复制 编辑 原始数据 按行查看 历史
Richard Herron 提交于 2016-12-04 18:06 . First commit of Wilcoxon2
*! Date : 2016-12-04
*! version : 0.1
*! Author : Richard Herron
*! Email : richard.c.herron@gmail.com
*! makes eststo-able Wilcoxon rank-sum command
/*
2016-12-04 v0.1 first upload to GitHub
*/
program define Wilcoxon2, eclass
version 13
/* parse syntax */
syntax varlist [if] [in], by(varname)
marksample touse
/* generate matrix of two-tailed p-values */
local names
capture matrix drop p
foreach v of varlist `varlist' {
ranksum `v' if `touse', by(`by')
matrix p = nullmat(p), 2*normprob(-abs(r(z)))
local names `names' "`v'"
}
matrix colnames p = `names'
/* store results */
count if `touse'
ereturn post , obs(`= r(N)')
ereturn matrix p = p
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/arlionn/Stata-Event_Study.git
git@gitee.com:arlionn/Stata-Event_Study.git
arlionn
Stata-Event_Study
Stata-Event_Study
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385