clog_p.dlg
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 56 行
DLG
56 行
/*
predict (after cloglog)
*! VERSION 1.1.1 28mar2005
*/
VERSION 9.0
INCLUDE _std_medium
INCLUDE header
HELP hlp1, view("help cloglog postestimation")
RESET res1
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 _p_gentype_score_off) /*
*/ label("Predicted probability of a positive outcome")
RADIO rb_xb @ _ss @ ., /*
*/ option(xb) /*
*/ onclickon(script _p_gentype_score_off) /*
*/ label("Linear prediction (xb)")
RADIO rb_stdp @ _ss @ ., /*
*/ option(stdp) /*
*/ onclickon(script _p_gentype_score_off) /*
*/ label("Standard error of the linear prediction")
RADIO rb_score @ _ss @ ., last /*
*/ option(score) /*
*/ onclickon(script _p_gentype_score_on) /*
*/ label("Equation-level scores")
INCLUDE _p_nooffset
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)
endoptions
INCLUDE _p_nooffset_pr
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?