📄 vwls.dlg
字号:
/*
vwls
*! VERSION 1.0.1 16oct2003
keyword: eclass
*/
VERSION 8.0
INCLUDE _std_medium
INCLUDE header
HELP hlp1, view("help vwls")
RESET res1
DIALOG main, label("vwls - Variance-weighted least squares") tabtitle("Model")
BEGIN
INCLUDE _dviv
CHECKBOX ck_nocons @ _ms @ ., /*
*/ label("Suppress constant term") /*
*/ option("noconstant") /*
*/
CHECKBOX ck_sd _lft _ls _iwd ., /*
*/ label("Use variable containing estimate of conditional std. deviation") /*
*/ clickon("gaction main.vn_sd.enable") /*
*/ clickoff("gaction main.vn_sd.disable") /*
*/
VARNAME vn_sd _cksep _ss _vnwd ., /*
*/ label("Conditional std. deviation variable") /*
*/ option(sd) /*
*/
END
INCLUDE byifin
INCLUDE weights_f
DIALOG rpt, tabtitle("Reporting")
BEGIN
DEFINE _x _lft
DEFINE _cx _spr2b
DEFINE _y 20
INCLUDE _sp_level
END
PROGRAM command
BEGIN
allowxi
INCLUDE _by_pr
put "vwls "
varlist main.vn_dv
varlist main.vl_iv
INCLUDE _weights_pr
INCLUDE _ifin_pr
beginoptions
option main.ck_nocons
if main.ck_sd {
if !main.vn_sd {
stopbox stop `""Conditional std. deviation variable" is selected, but has not been filled in."'
}
optionarg main.vn_sd
}
optionarg /hidedefault rpt.sp_level
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -