📄 factor_p.dlg
字号:
/*
predict (after factor)
*! VERSION 1.0.2 25mar2005
*/
VERSION 9.0
INCLUDE _std_large
INCLUDE header
HELP hlp1, view("help factor postestimation")
RESET res1
DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
TEXT tx_var _lft _top _vnwd ., ///
label("New variables:")
EDIT ed_var @ _ss @ ., ///
label("New variables") max(32)
GROUPBOX gb_produce _lft _ls _iwd _ht4, ///
label("Produce")
RADIO rb_regress _indent _ss _ibwd ., first ///
option(regression) label("Factors scored by the regression scoring method")
RADIO rb_bartlett @ _ss @ ., last ///
option(bartlett) label("Factors scored by the Bartlett scoring method")
GROUPBOX gb_opts _lft _xls _iwd _ht8, ///
label("Options")
CHECKBOX ck_norotated _ilft _ss _ibwd ., ///
option(norotated) label("Use unrotated results, even when rotated results are available")
CHECKBOX ck_notable @ _ms @ ., ///
option(notable) label("Suppress table of scoring coefficients")
EDIT en_format @ _ls _en7wd ., ///
label("Format") option(format) default("%8.4f")
TEXT tx_format _spsep @ _cksprb ., ///
label("Format for displaying the scoring coefficients")
END
INCLUDE ifin
PROGRAM command
BEGIN
put "predict "
require main.ed_var
put " " main.ed_var " "
INCLUDE _ifin_pr
beginoptions
option main.rb_regress
option main.rb_bartlett
option main.ck_norotated
option main.ck_notable
optionarg /hidedefault main.en_format
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -