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

📄 dprobit.dlg

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

*!  VERSION 1.1.3  15mar2005

  keyword:  eclass

*/

VERSION 9.0

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

DIALOG main, label("dprobit - Maximum-likelihood probit estimation")	/*
		*/ tabtitle("Model")
BEGIN
  INCLUDE _dviv

  GROUPBOX gb_output _lft      _ls       _iwd      _ht15h,		/*
		*/ label("Options")					/*
		*/

  TEXT     tx_offset _ilft     _ms       _cwd2     .,			/*
		*/ label("Offset variable:")				/*
		*/
  VARNAME  vn_offset @         _ss       _vnwd     .,			/*
		*/ label("Offset variable")				/*
		*/ option("offset")					/*
		*/
  TEXT     tx_at     @         _ls       280	   .,			/*
	*/ label("Point at which marginal effects are evaluated:")	/*
		*/
  COMBOBOX cb_at     @         _ss       @         .,			/*
		*/ contents(row)					/*
		*/ dropdown						/*
	*/ error("Point at which marginal effects are evaluated")	/*
		*/ option("at")						/*
		*/

  CHECKBOX ck_asis   @         _ls       @         .,			/*
		*/ label("Retain perfect predictor variables")		/*
		*/ option("asis")					/*
		*/
  CHECKBOX ck_class  @         _ms       @         .,			/*
		*/ label("Treat indicators as continuous")		/*
		*/ option("classic")					/*
		*/
END

INCLUDE byifin
INCLUDE weights_fpa
INCLUDE se

SCRIPT PREINIT
BEGIN
	script se_createAsClRobust
END

DIALOG rpt, tabtitle("Reporting")
BEGIN
  DEFINE _x _lft
  DEFINE _cx _spr2b
  DEFINE _y _top
  INCLUDE _sp_level

END

PROGRAM rpt_output
BEGIN
	optionarg /hidedefault rpt.sp_level
END

INCLUDE max_internal

PROGRAM command
BEGIN
	allowxi
	INCLUDE _by_pr
	put "dprobit "
	varlist main.vn_dv main.vl_iv
	INCLUDE _weights_pr
	INCLUDE _ifin_pr
	beginoptions
		optionarg main.vn_offset
		optionarg main.cb_at
		option main.ck_asis
		option main.ck_class
		put " " /program se_output
		put " " /program rpt_output
		put " " /program max_output
	endoptions
END

⌨️ 快捷键说明

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