mvreg.dlg

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 77 行

DLG
77
字号
/*
  mvreg

*! VERSION 1.0.1  08dec2003

  keyword:  eclass

*/

VERSION 8.0

INCLUDE _std_large
INCLUDE header

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

DIALOG main, label("mvreg - Multivariate regression") tabtitle("Model")
BEGIN
  /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+*/ 
  TEXT     tx_dv     _lft      _top      _iwd      .,			/*
		*/ label("Dependent variables:")			/*
		*/
  VARLIST  vl_dv     @         _ss       @         .,			/*
		*/ label("Dependent variables")				/*
		*/

  TEXT     tx_iv     @         _ls       @         .,			/*
		*/ label("Independent variables:")			/*
		*/
  VARLIST  vl_iv     @         _ss       @         .,			/*
		*/ label("Independent variables")			/*
		*/ allowcat						/*
		*/
  CHECKBOX ck_nocons @         _ms       _cwd1     .,			/*
		*/ label("Suppress constant term")			/*
		*/ option("noconstant")					/*
		*/


/* -noheader- and -notable- are programmers options */
END

INCLUDE byifin
INCLUDE weights_fa

DIALOG rpt, tabtitle("Reporting")
BEGIN	
  DEFINE _x _lft
  DEFINE _cx _spr
  DEFINE _y _top
  INCLUDE _sp_level
  
  CHECKBOX ck_corr   _lft      _ls       _cwd1     .,			/*
		*/ label("Report correlation matrix")			/*
		*/ option("corr")					/*
		*/	  
END

PROGRAM command
BEGIN
	allowxi
	INCLUDE _by_pr
	put "mvreg "
	varlist main.vl_dv 
	put "="
	varlist main.vl_iv
	INCLUDE _weights_pr
	INCLUDE _ifin_pr
	beginoptions
		option main.ck_nocons
		optionarg /hidedefault rpt.sp_level
		option rpt.ck_corr
	endoptions
END

⌨️ 快捷键说明

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