xtht_p.dlg
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 55 行
DLG
55 行
/*
predict (after xthtaylor)
*! VERSION 1.1.2 28mar2005
*/
VERSION 9.0
INCLUDE _std_medium
INCLUDE header
HELP hlp1, view("help xthtaylor postestimation")
RESET res1
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
INCLUDE _p_gentype
GROUPBOX gb_opts _lft _xls _iwd _ht12, /*
*/ label("Produce:")
RADIO rb_xb _indent _ss _inwd ., first /*
*/ option(xb) /*
*/ label("Fitted values (B*x[i,t] + G*z[i])")
RADIO rb_stdp @ _ss @ ., /*
*/ option(stdp) /*
*/ label("Standard Error")
RADIO rb_ue @ _ss @ ., /*
*/ option(ue) /*
*/ label("Combined residual (u[i] + e[i,t])")
RADIO rb_xbu @ _ss @ ., /*
*/ option(xbu) /*
*/ label("Prediction including individual effect (B*x[i,t] + G*z[i] + u[i])")
RADIO rb_u @ _ss @ ., /*
*/ option(u) /*
*/ label("Individual effect (u[i])")
RADIO rb_e @ _ss @ ., last /*
*/ option(e) /*
*/ label("Overall error (e[i,t])")
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_xb rb_stdp rb_ue rb_xbu rb_u rb_e)
endoptions
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?