📄 truncr_p.dlg
字号:
/*
predict (after truncreg)
*! VERSION 1.1.2 29mar2005
*/
VERSION 9.0
INCLUDE _std_medium // ** set POSTINIT to match
INCLUDE header
HELP hlp1, view("help truncreg postestimation")
RESET res1
SCRIPT POSTINIT
BEGIN
script _p_gentype_setMedium
END
DEFINE awid 45
DEFINE asep +50
DEFINE bwid 40
DEFINE bsep +45
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
INCLUDE _p_gentype
GROUPBOX gb_opts _lft _ls _iwd _ht13h, /*
*/ label("Produce:")
RADIO rb_xb _indent _ss _inwd ., first /*
*/ option(xb) /*
*/ clickon("script all_off") /*
*/ label("Fitted values (xb)")
RADIO rb_stdp @ _ss @ ., /*
*/ option(stdp) /*
*/ clickon("script all_off") /*
*/ label("Standard error of the prediction")
RADIO rb_stdf @ _ss @ ., /*
*/ option(stdf) /*
*/ clickon("script all_off") /*
*/ label("Standard error of the forecast")
DEFINE holdx @x
RADIO rb_pr @ _ms awid ., /*
*/ option(NONE) /* handled another way */ /*
*/ clickon("script pr_on") /*
*/ label("Pr(y|")
EDIT en_pr_a asep @ _en7wd ., /*
*/ numonly /*
*/ label("Pr() lower limit")
TEXT tx_pr _en7sep @ bwid ., /*
*/ center label("< y <")
EDIT en_pr_b bsep @ _en7wd ., /*
*/ numonly /*
*/ label("Pr() upper limit")
TEXT tx_pr2 _en7sep @ bwid ., label(")")
RADIO rb_e holdx _ms awid ., /*
*/ option(NONE) /* handled another way */ /*
*/ clickon("script e_on") /*
*/ label("E(y|")
EDIT en_e_a asep @ _en7wd ., /*
*/ numonly /*
*/ label("E() lower limit")
TEXT tx_e _en7sep @ bwid ., /*
*/ center label("< y <")
EDIT en_e_b bsep @ _en7wd ., /*
*/ numonly /*
*/ label("E() upper limit")
TEXT tx_e2 _en7sep @ bwid ., label(")")
RADIO rb_score _ilft _ms _ibwd ., last /*
*/ option(scores) /*
*/ onclickon(script _p_gentype_multiple) /*
*/ label("Equation-level scores")
END
INCLUDE _p_gentype_sc
INCLUDE ifin
SCRIPT all_off
BEGIN
script pr_off
script e_off
script _p_gentype_single
END
SCRIPT pr_on
BEGIN
script e_off
main.en_pr_a.enable
main.en_pr_b.enable
script _p_gentype_single
END
SCRIPT pr_off
BEGIN
main.en_pr_a.disable
main.en_pr_b.disable
script _p_gentype_single
END
SCRIPT e_on
BEGIN
script pr_off
main.en_e_a.enable
main.en_e_b.enable
script _p_gentype_single
END
SCRIPT e_off
BEGIN
main.en_e_a.disable
main.en_e_b.disable
script _p_gentype_single
END
INCLUDE _type_list_fd
PROGRAM command
BEGIN
put "predict "
put " " /program _p_gentype_output
INCLUDE _ifin_pr
beginoptions
option radio(main rb_xb rb_stdp rb_stdf rb_pr rb_e rb_score)
endoptions
INCLUDE _pr_pr
INCLUDE _e_pr
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -