⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rocfit.dlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 DLG
字号:
/*
  rocfit

*!  VERSION 1.1.2  20mar2005

*/

VERSION 9.0

INCLUDE _std_large
INCLUDE _ht330
INCLUDE header

HELP hlp1, view("help rocfit")
RESET res1

DIALOG main, label("rocfit - Fit ROC models") 	/*
		*/ tabtitle("Model")
BEGIN
  TEXT     tx_varr         _lft      _top      _vnwd     .,		/*
		*/label("Reference variable:")
  TEXT     tx_varc         _vlx      @         _cwd1     .,		/*
  		*/label("Classification variable:")			/*
  		*/
  VARNAME  vn_varr         _lft      _ss       _vnwd     .,             /*
  		*/label("Reference variable")
  VARNAME  vn_varc         _vlx      @         @         .,		/*
  		*/label("Classification variable")
  GROUPBOX gb_opt          _lft      _xls      _iwd      _ht12,         /*
  		*/label("Options")
  CHECKBOX ck_cont         _indent   _ss       _ibwd     .,		/*
  		*/ clickon("program cont_on")				/*
  		*/ clickoff("script cont_off")				/*
	*/ label("Divide classification variable into equal-length groups")
DEFINE holdx1 @x
  RADIO    rb_cont         _indent2  _ms       _rbwd     .,		/*
  		*/label("")/*
  		*/clickon("program cont1_on")				/*
		*/first
DEFINE holdx2 @x
  SPINNER  sp_cont         _rbsep    @         _spwd     .,		/*
  		*/label("Number of groups")				/*
  		*/min(1) max(10000000) default(1)			/*
		*/option("continuous")
  TEXT     tx_cont         _spsep    @         _cwd0     .,		/*
  		*/label("Number of groups")
  RADIO    rb_cont2        holdx2    _ss       @         .,		/*
  		*/label("Force use of classification variable as is")	/*
  		*/option("continuous(.)")				/*
		*/clickon("script cont2_on")				/*
		*/last
  CHECKBOX ck_gener        holdx1    _ls       _ibwd     .,		/*  		*/label("Generate a new variable to contain classification groups")/*
  		*/ clickon(gaction main.ed_gener.enable)		/*
		*/ clickoff(gaction main.ed_gener.disable)
  EDIT     ed_gener        _indent2  _ss       _vnwd     .,		/*
	*/label("Generate a new variable to contain classification groups")/*
		*/option("generate")					/*
  		*/max(32)
END

INCLUDE ifin
INCLUDE weights_f
INCLUDE se

SCRIPT PREINIT
BEGIN
	script se_createAsML
END

SCRIPT POSTINIT
BEGIN
	script se_setRobust_off
END

DIALOG rpt, tabtitle("Reporting")
BEGIN
  DEFINE _x _lft
  DEFINE _y 20
  DEFINE _cx _sprb
  INCLUDE _sp_level
END

INCLUDE max_ml

PROGRAM cont_on
BEGIN
	call gaction main.rb_cont.enable
	if main.rb_cont {
    		call program cont1_on
	}
	call gaction main.tx_cont.enable
	call gaction main.rb_cont2.enable
	if main.rb_cont2 {
		call script cont2_on
	}
END

SCRIPT cont_off
  BEGIN
    main.rb_cont.disable
    main.rb_cont2.disable
    script cont2_on
    main.tx_cont.disable
END

PROGRAM cont1_on
BEGIN
	if main.ck_cont {
		call gaction main.sp_cont.enable
		call gaction main.ck_gener.enable
		if main.ck_gener {
			call gaction main.ed_gener.enable
		}
	}
END

SCRIPT cont2_on
  BEGIN
    main.sp_cont.disable
    main.ck_gener.disable
    main.ed_gener.disable
  END

PROGRAM command
BEGIN
	put "rocfit "
	varlist main.vn_varr
	varlist main.vn_varc
	INCLUDE _weights_pr
	INCLUDE _ifin_pr
	beginoptions
		if main.ck_cont {
			if main.rb_cont {
				optionarg main.sp_cont
				if main.ck_gener {
					require main.ed_gener
					optionarg main.ed_gener
				}
			}
			if main.rb_cont2 {
				option main.rb_cont2
			}
		}
	endoptions
	beginoptions
		put " " /program se_output
		optionarg /hidedefault rpt.sp_level
		put " " /program max_output
	endoptions
END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -