📄 arch_p.dlg
字号:
/*
predict (after arch)
*! VERSION 1.1.1 28mar2005
*/
VERSION 9.0
INCLUDE _std_large
INCLUDE _ht340
INCLUDE header
HELP hlp1, view("help arch postestimation")
RESET res1
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
INCLUDE _p_gentype
GROUPBOX gb_opt _lft _ls _iwd _ht12, label("Produce:")
RADIO rb_xb _indent _ss _inwd ., first /*
*/ option(xb) /*
*/ label("Predicted values for mean equation - the differenced series")
RADIO rb_y @ _ss @ ., /*
*/ option(y) /*
*/ label("Predicted values for mean equation in y - the undifferenced series")
RADIO rb_variance @ _ss @ ., /*
*/ option(variance) /*
*/ label("Predicted values for the conditional variance")
RADIO rb_het @ _ss @ ., /*
*/ option(het) /*
*/ label("Predicted values for the variance considering only multiplicative heterosked.")
RADIO rb_resid @ _ss @ ., /*
*/ option(residuals) /*
*/ label("Residuals or predicted innovations")
RADIO rb_yresid @ _ss @ ., last /*
*/ option(yresiduals) /*
*/ label("Residuals or predicted innovations in y - the undifferenced series")
END
INCLUDE ifin
DEFINE labwd 75
DEFINE labsep +80
DEFINE varnwd 70
DEFINE varnsep +75
DEFINE orwd 20
DEFINE orsep +25
DEFINE valwd 55
DEFINE valsep +60
DIALOG opt, tabtitle("Options")
BEGIN
GROUPBOX gb_stepdyn _lft _top _iwd _ht16, /*
*/ label("One-step or dynamic")
RADIO rb_onestep _indent _ss _inwd ., first /*
*/ clickon("script all_off") /*
*/ label("One-step prediction")
DEFINE hx @x
DEFINE hcx @cx
RADIO rb_dyn1 @ _ms @ ., /*
*/ clickon("script all_off") /*
*/ label("Switch to dynamic predictions at time = max AR lag + max MA lag")
RADIO rb_dyn2 @ _ms _comb3_1 ., /*
*/ clickon("script dyn_on") /*
*/ label("Switch to dynamic predictions at time:")
EDIT ed_dyn2 _indent2 _ss _en14wd ., /*
*/ label("Switch to dynamic predictions at time")
RADIO rb_at hx _ms hcx ., last /*
*/ clickon("script at_on") /*
*/ label("One-step prediction and static evaluation with disturbance:")
TEXT tx_err _indent2 _ss labwd ., right /*
*/ label("Error:")
DEFINE inx @x
RADIO rb_err_vr labsep @ varnwd ., first /*
*/ clickon("script err_varnotval") /*
*/ label("varname:")
VARNAME vn_err_vr varnsep @ _vnwd ., /*
*/ label("Error varname")
TEXT tx_err_or _vnsep @ orwd ., center/*
*/ label("or")
RADIO rb_err_vl orsep @ valwd ., last /*
*/ clickon("script err_valnotvar") /*
*/ label("value:")
EDIT en_err_vl valsep @ _en7wd ., /*
*/ numonly /*
*/ label("Error value")
TEXT tx_verr inx _ms labwd ., right /*
*/ label("Var. of error:")
RADIO rb_verr_vr labsep @ varnwd ., first /*
*/ clickon("script verr_varnotval") /*
*/ label("varname:")
VARNAME vn_verr_vr varnsep @ _vnwd ., /*
*/ label("Variance of error varname")
TEXT tx_verr_or _vnsep @ orwd ., center/*
*/ label("or")
RADIO rb_verr_vl orsep @ valwd ., last /*
*/ clickon("script verr_valnotvar") /*
*/ label("value:")
EDIT en_verr_vl valsep @ _en7wd ., /*
*/ numonly /*
*/ label("Variance of error value")
GROUPBOX gb_disturb _lft _xls _iwd _ht9, /*
*/ label("ARMA component")
RADIO rb_arma _indent _ss _inwd ., first /*
*/ option(NONE) /* default */ /*
*/ clickon("gaction opt.ed_t0.disable") /*
*/ label("Include the ARMA component (e_t = 0 and s_t = 0 prior to e(sample))")
RADIO rb_t0 @ _ms @ ., /*
*/ option(NONE) /* handled another way */ /*
*/ clickon("gaction opt.ed_t0.enable") /*
*/ label("Include the ARMA component and assume e_t and s_t are zero prior to:")
DEFINE hldx @x
DEFINE hldcx @cx
EDIT ed_t0 _indent2 _ss _en14wd ., /*
*/ option(t0) /*
*/ label("Include the ARMA component and assume e_t and s_t are zero prior to")
RADIO rb_struct hldx _ms hldcx ., last /*
*/ option(structural) /*
*/ clickon("gaction opt.ed_t0.disable") /*
*/ label("Consider only the structural component (ignore ARMA terms)")
END
SCRIPT dynon
BEGIN
opt.ed_dyn2.enable
END
SCRIPT dynoff
BEGIN
opt.ed_dyn2.disable
END
PROGRAM err_on
BEGIN
call gaction opt.tx_err.enable
call gaction opt.rb_err_vr.enable
call gaction opt.tx_err_or.enable
call gaction opt.rb_err_vl.enable
if opt.rb_err_vr {
call gaction opt.vn_err_vr.enable
}
if opt.rb_err_vl {
call gaction opt.en_err_vl.enable
}
END
SCRIPT err_off
BEGIN
opt.tx_err.disable
opt.rb_err_vr.disable
opt.vn_err_vr.disable
opt.tx_err_or.disable
opt.rb_err_vl.disable
opt.en_err_vl.disable
END
PROGRAM verr_on
BEGIN
call gaction opt.tx_verr.enable
call gaction opt.rb_verr_vr.enable
call gaction opt.tx_verr_or.enable
call gaction opt.rb_verr_vl.enable
if opt.rb_verr_vr {
call gaction opt.vn_verr_vr.enable
}
if opt.rb_verr_vl {
call gaction opt.en_verr_vl.enable
}
END
SCRIPT verr_off
BEGIN
opt.tx_verr.disable
opt.rb_verr_vr.disable
opt.vn_verr_vr.disable
opt.tx_verr_or.disable
opt.rb_verr_vl.disable
opt.en_verr_vl.disable
END
SCRIPT err_varnotval
BEGIN
opt.vn_err_vr.enable
opt.en_err_vl.disable
END
SCRIPT err_valnotvar
BEGIN
opt.vn_err_vr.disable
opt.en_err_vl.enable
END
SCRIPT verr_varnotval
BEGIN
opt.vn_verr_vr.enable
opt.en_verr_vl.disable
END
SCRIPT verr_valnotvar
BEGIN
opt.vn_verr_vr.disable
opt.en_verr_vl.enable
END
SCRIPT aton
BEGIN
program err_on
program verr_on
END
SCRIPT atoff
BEGIN
script err_off
script verr_off
END
SCRIPT all_off
BEGIN
script dynoff
script atoff
END
SCRIPT at_on
BEGIN
script dynoff
script aton
END
SCRIPT dyn_on
BEGIN
script dynon
script atoff
END
INCLUDE _p_gentype_sc
INCLUDE _type_list_fd
PROGRAM command
BEGIN
put "predict "
put " " /program _p_gentype_output
INCLUDE _ifin_pr
beginoptions
option radio(main rb_xb rb_y rb_variance rb_het /*
*/ rb_resid rb_yresid)
if opt.rb_dyn1 {
put "dynamic(.) "
}
if opt.rb_dyn2 {
require opt.ed_dyn2
put "dynamic(" opt.ed_dyn2 ") "
}
if opt.rb_at {
put "at("
if opt.rb_err_vr {
require opt.vn_err_vr
put opt.vn_err_vr
}
if opt.rb_err_vl {
require opt.en_err_vl
put opt.en_err_vl
}
put " "
if opt.rb_verr_vr {
if opt.vn_verr_vr {
put opt.vn_verr_vr
}
if !opt.vn_verr_vr {
put "."
}
}
if opt.rb_verr_vl {
if opt.en_verr_vl {
put opt.en_verr_vl
}
if !opt.en_verr_vl {
put "."
}
}
put ") "
}
option radio(opt rb_arma rb_struct rb_t0)
if opt.rb_t0 {
require opt.ed_t0
optionarg opt.ed_t0
}
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -