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

📄 mvreg.dlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 DLG
字号:
/*
  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -