xtintreg.dlg
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 130 行
DLG
130 行
/*
xtintreg
*! VERSION 1.1.4 30mar2005
keyword: eclass
*/
VERSION 9.0
INCLUDE _std_large
INCLUDE _ht320
INCLUDE header
HELP hlp1, view("help xtintreg")
RESET res1
DIALOG main, /*
*/ label("xtintreg - Random-effects interval data regression models") /*
*/ tabtitle("Model")
BEGIN
DEFINE _x _xsetbu
DEFINE _y _top
INCLUDE _bu_panelset
TEXT tx_dv1 _lft _top _vnwd ., /*
*/ label("Dependent variable 1:") /*
*/
VARNAME vn_dv1 @ _ss _vnwd ., /*
*/ label("Dependent variable 1") /*
*/ allowts
TEXT tx_dv2 _vlx _top _vnwd ., /*
*/ label("Dependent variable 2:") /*
*/
VARNAME vn_dv2 @ _ss _vnwd ., /*
*/ label("Dependent variable 2") /*
*/ allowts
TEXT tx_iv _lft _ls _iwd ., /*
*/ label("Independent variables:") /*
*/
VARLIST vl_iv @ _ss @ ., /*
*/ label("Independent variables") /*
*/ allowcat /*
*/ allowts
CHECKBOX ck_nocons @ _ms _cwd1 ., /*
*/ label("Suppress constant term") /*
*/ option("noconstant") /*
*/
GROUPBOX gb_output _lft _ls _iwd _ht9, /*
*/ label("Options") /*
*/
TEXT tx_offset _ilft _ss _cwd2 ., /*
*/ label("Offset variable:") /*
*/
VARNAME vn_offset @ _ss _vnwd ., /*
*/ label("Offset variable") /*
*/ option("offset") /*
*/
DEFINE _x _ilft
DEFINE _cx _ibwd
DEFINE _y _ls
INCLUDE _constraints
END
INCLUDE intopts_re
INCLUDE byifin
INCLUDE weights_i
INCLUDE se
SCRIPT PREINIT
BEGIN
script se_createAsJknifeBstrap
END
DIALOG rpt, tabtitle("Reporting")
BEGIN
DEFINE _x _lft
DEFINE _cx _spr2b
DEFINE _y _top
INCLUDE _sp_level
GROUPBOX gb_tests _lft +35 _iwd _ht4h, /*
*/ label("Additional test statistics")
CHECKBOX ck_noskip _ilft _ss _inwd ., /*
*/ label("Perform likelihood-ratio test") /*
*/ option("noskip") /*
*/
CHECKBOX ck_intreg @ _ms @ ., /*
*/ option("intreg") /*
*/ label("Perform likelihood-ratio test comparing model with pooled intreg model")
END
INCLUDE max_ml
SCRIPT POSTINIT
BEGIN
script se_setCluster_off
script se_setTitleSE
END
PROGRAM command
BEGIN
allowxi
INCLUDE _by_pr
put "xtintreg "
varlist main.vn_dv1 main.vn_dv2 [main.vl_iv]
if !main.vl_iv & main.ck_nocons {
stopbox stop `""Suppress constant term" is selected without independent variables."'
}
INCLUDE _weights_pr
INCLUDE _ifin_pr
beginoptions
option main.ck_nocons
optionarg main.vn_offset
put " " /program intopts_re_output
INCLUDE _constraints_main_pr
put " " /program se_output
optionarg /hidedefault rpt.sp_level
option rpt.ck_noskip
option rpt.ck_intreg
put " " /program max_output
endoptions
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?