📄 arima_estat.ado
字号:
*! version 1.0.0 16feb2005
program arima_estat, rclass
version 9
if "`e(cmd)'" != "arima" {
error 301
}
gettoken key rest : 0, parse(", ")
local lkey = length(`"`key'"')
if `"`key'"' == substr("summarize",1,max(2,`lkey')) {
ArimaSumm `rest'
}
else {
estat_default `0'
}
return add
end
program ArimaSumm, rclass
// handle the varlist since some non varnames on the e(b) matrix stripe
syntax [anything(name=eqlist)] [, *]
if "`eqlist'" == "" {
local eqlist "(depvar:`e(depvar)')"
local token : rowfullnames e(V)
gettoken next token : token
while index("`next'","ARMA") != 1 {
if index("`next'",":_cons") != length("`next'") - 5 {
local eqlist "`eqlist' (`next')"
}
gettoken next token : token
}
}
estat_summ `eqlist', `options'
return add
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -