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

📄 varsoc.dlg

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

*!  VERSION 1.1.0  11jan2005

*/

VERSION 9.0

INCLUDE _std_large
INCLUDE header
HELP hlp1, view("help varsoc")
RESET res1

DIALOG main, tabtitle("Main")					///
	label("varsoc - Obtain lag-order selection statistics")
BEGIN
  DEFINE _x _xsetbu
  DEFINE _y _top
  INCLUDE _bu_tsset
  TEXT     tx_depv         _lft      _topph     _comb3_2   .,		///
	label("Dependent variables:")
  VARLIST  vl_depv         @         _ss        _iwd       .,		///
	label("Dependent variables")

  GROUPBOX gb_options      @         _ls        @          _ht16,	///
  	label("Options")

  SPINNER  sp_maxl         _ilft     _ss        _spwd      .,		///
	label("Maximum lag order") option(maxlag)			///
	min(1) max(10000000) default(4)
  TEXT     tx_maxl         _spsep    @          _spr2b     .,		///
	label("Maximum lag order")

  CHECKBOX ck_exog         _ilft     _ls        _cwd2      .,		///
	label("Exogenous variables:")					///
	onclickon(program exog_on) onclickoff(program exog_off)
  VARLIST  vl_exog         @         _ss        @          .,		///
	label("Exogenous variables:") option(exog)

  TEXT     tx_cons         _lft2     -20        @          .,		///
	label("Constraints on exogenous variables:")
  COMBOBOX cb_cons         @         _ss        @          .,		///
	label("Constraints on exogenous variables")			///
	option(constraints) contents(constraints) dropdown append

  CHECKBOX ck_nocon        _ilft     _ls        _ibwd      .,		///
	label("Suppress constant term") option(noconstant)		///
	onclickon(program nocon_on) onclickoff(program addcon_on)
  CHECKBOX ck_lut          _ilft     _ms        _ibwd      .,		///
	label("Use Lutkepohl's version of information criteria")	///
	onclickon(program lut_on)					///
	onclickoff(program rmlut_on) 					///
	option(lutstats)

  SPINNER  sp_sep          _lft2     _ls        _spwd      .,		///
	label("Separator every N lines")				///
	min(0) max(10000000) default(0) option(separator)
  TEXT     tx_sep          _spsep    @          _spr2b     .,		///
	label("Separator every N lines")

  DEFINE _x _ilft
  DEFINE _y @
  DEFINE _cx _spr2b
  INCLUDE _sp_level
END

INCLUDE byifin

PROGRAM exog_on
BEGIN
	call main.vl_exog.enable
	call main.tx_cons.enable
	call main.cb_cons.enable
END

PROGRAM exog_off
BEGIN
	call main.vl_exog.disable
	call main.tx_cons.disable
	call main.cb_cons.disable
END

PROGRAM command
BEGIN
	INCLUDE _by_pr
	put "varsoc "
	varlist main.vl_depv
	INCLUDE _ifin_pr
	beginoptions
		optionarg /hidedefault main.sp_maxl
		if main.ck_exog {
			require main.vl_exog
			optionarg main.vl_exog
		}
		optionarg main.cb_cons
		option main.ck_nocon
		option main.ck_lut
		INCLUDE _level_main_pr
		optionarg /hidedefault main.sp_sep
	endoptions
END

⌨️ 快捷键说明

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