📄 svy_logit_common_p.idlg
字号:
/*
svy_logit_common_p.idlg
This is an INCLUDE file for the -predict- dialogs that go with
-svy: logit- and -svy: logistic-.
*! VERSION 1.1.1 28mar2005
*/
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
INCLUDE _p_gentype
GROUPBOX gb_opts _lft _ls _iwd _ht8, /*
*/ label("Produce:")
RADIO rb_p _indent _ss _inwd ., first /*
*/ option(p) /*
*/ onclickon(script score_off) /*
*/ label("Predicted probability of a positive outcome")
RADIO rb_xb @ _ss @ ., /*
*/ option(xb) /*
*/ onclickon(script score_off) /*
*/ label("Linear prediction")
RADIO rb_stdp @ _ss @ ., /*
*/ option(stdp) /*
*/ onclickon(script score_off) /*
*/ label("Standard error of the linear prediction")
RADIO rb_score @ _ss @ ., last /*
*/ option(score) /*
*/ onclickon(script score_on) /*
*/ label("Equation-level scores")
CHECKBOX ck_nooffset _lft _xls _iwd ., /*
*/ option(nooffset) /*
*/ label("Ignore offset variable (if any)")
END
SCRIPT score_off
BEGIN
main.ck_nooffset.enable
END
SCRIPT score_on
BEGIN
main.ck_nooffset.disable
END
INCLUDE _p_gentype_sc
INCLUDE ifin
INCLUDE _type_list_fd
PROGRAM command
BEGIN
put "predict "
put " " /program _p_gentype_output
INCLUDE _ifin_pr
beginoptions
option radio(main rb_p rb_xb rb_stdp rb_score)
option main.ck_nooffset
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -