📄 mlogit_p.dlg
字号:
/*
predict (after mlogit)
*! VERSION 1.1.3 30mar2005
*/
VERSION 9.0
INCLUDE _std_large
INCLUDE _ht290
INCLUDE header
HELP hlp1, view("help mlogit postestimation")
RESET res1
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
INCLUDE _p_gentype
GROUPBOX gb_opts _lft _ls _iwd _ht19, /*
*/ label("Produce:")
RADIO rb_p_all _ilft _ss _ibwd ., first /*
*/ option(p) /*
*/ clickon("script offboth") /*
*/ label("Probabilities (specify as many variables as number of outcomes)")
RADIO rb_score _ilft _ss _comb3_2 ., /*
*/ option(scores) /*
*/ clickon("script offboth") /*
*/ label("Equation-level scores")
DEFINE holdy@y
RADIO rb_p _ilft _ss _comb3_2 ., /*
*/ option(p) /*
*/ clickon("script off2") /*
*/ label("Probability (specify one variable)")
RADIO rb_xb @ _ss @ ., /*
*/ option(xb) /*
*/ clickon("script off2") /*
*/ label("Linear prediction (xb)")
RADIO rb_stdp @ _ss @ ., /*
*/ option(stdp) /*
*/ clickon("script off2") /*
*/ label("Standard error of linear prediction")
RADIO rb_stddp @ _ss @ ., last /*
*/ option(stddp) /*
*/ clickon("script on2") /*
*/ label("Standard error of the difference")
TEXT tx_outcome1 _ilft3_3 holdy _cwd3_2 ., /*
*/ label("Outcome:")
LISTBOX lb_outcome1 @ _ss @ _ht3, /*
*/ contents(ereturn eqnames) /*
*/ label("Outcome")
TEXT tx_outcome2 @ _vs3 @ ., /*
*/ label("Compared to outcome:")
LISTBOX lb_outcome2 @ _ss @ _ht3, /*
*/ contents(ereturn eqnames) /*
*/ label("Compared to outcome")
END
INCLUDE _p_gentype_sc
INCLUDE ifin
INCLUDE _type_list_fd
SCRIPT offboth
BEGIN
script _p_gentype_multiple
script eq1off
script eq2off
END
SCRIPT off2
BEGIN
script _p_gentype_single
script eq1on
script eq2off
END
SCRIPT on2
BEGIN
script _p_gentype_single
script eq1on
script eq2on
END
SCRIPT eq2on
BEGIN
main.tx_outcome2.enable
main.lb_outcome2.enable
END
SCRIPT eq2off
BEGIN
main.tx_outcome2.disable
main.lb_outcome2.disable
END
SCRIPT eq1on
BEGIN
main.tx_outcome1.enable
main.lb_outcome1.enable
END
SCRIPT eq1off
BEGIN
main.tx_outcome1.disable
main.lb_outcome1.disable
END
PROGRAM command
BEGIN
put "predict "
put " " /program _p_gentype_output
INCLUDE _ifin_pr
beginoptions
if !main.rb_p_all & !main.rb_score {
put "outcome("
require main.lb_outcome1
put main.lb_outcome1
if main.rb_stddp {
require main.lb_outcome2
put ", " main.lb_outcome2
}
put ") "
}
option radio(main rb_p_all rb_p rb_xb rb_stdp /*
*/ rb_stddp rb_score)
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -