📄 _prefix_footnote.ado
字号:
*! version 1.0.6 30mar2005
program _prefix_footnote
version 9
syntax [, deff ]
local footnote `"`e(footnote)'"'
gettoken cmd args : footnote, parse(" ,")
capture which `cmd'
if !c(rc) {
`footnote'
}
if "`e(prefix)'" == "svy" {
_svy_fpc_note `deff'
_svy_subpop_note
_svy_singleton_note
}
if "`e(missing)'" == "missing" ///
& inlist("`e(vce)'", "brr", "bootstrap", "jackknife") {
if "`e(vce)'" == "brr" {
local vcetype BRR
}
else local vcetype `e(vce)'
if e(N_misreps) == 1 {
local reps replicate
}
else {
local reps replicates
}
if "`e(N_misreps)'" != "" {
local the `e(N_misreps)'
}
else local the "some of the"
di as txt "{p 0 6 2}" ///
"Note: One or more parameters could not be estimated in " ///
"`the' `vcetype' `reps'; " ///
"standard error estimates include only complete replications.{p_end}"
}
if `"`e(opt)'"' == "ml" | !missing(e(converged)) {
ml_footnote
}
end
exit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -