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

📄 proportion.dlg

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

*!  VERSION 1.1.2  21mar2005

  keyword:  eclass

*/

VERSION 9.0

INCLUDE _std_large
INCLUDE _ht320
INCLUDE header

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


DIALOG main, label("proportion - Estimate proportions")			///
		tabtitle("Model")
BEGIN
  TEXT     tx_vars   _lft      _top      _cwd1     .,			///
		label("Variables:")
  VARLIST  vl_vars   _lft      _ss       _iwd      .,			///
		label("Variables:")

  INCLUDE svy_stdize

  CHECKBOX ck_nolabel  _lft    _xxls     _iwd      .,			///
		label("Suppress value labels")				///
		option("nolabel")
  CHECKBOX ck_missing   @      _ms       @         .,			///
		label("Treat missing values like other values")		///
		clickon(program check_legend)				///
		clickoff(program check_legend)				///
		option("missing")
END

INCLUDE svy_stdize_pr

INCLUDE ifin_overopt
INCLUDE weights_fpi
INCLUDE se
INCLUDE srsrpt

SCRIPT PREINIT
BEGIN
	script se_createAsAnalytic
END

SCRIPT POSTINIT
BEGIN
	script se_setTitleSeCluster
END

PROGRAM command
BEGIN
	put "proportion "
	varlist main.vl_vars
	INCLUDE _weights_pr
	put /program ifin_output
	beginoptions
		put /program svy_stdize_output
		option main.ck_nolabel
		option main.ck_missing
		put " " /program over_output
		put " " /program se_output
		put " " /program srsrpt_output
	endoptions
END

⌨️ 快捷键说明

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