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

📄 tab1.dlg

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

*!  VERSION 1.1.1  20mar2005

*/

VERSION 9.0

INCLUDE _std_medium
INCLUDE header

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

DIALOG main, label("tab1 - One-way tables") tabtitle("Main")
BEGIN
  TEXT     tx_vars   _lft      _top      _iwd      .,			/*
		*/ label("Categorical variables:")			/*
		*/
  VARLIST  vl_vars   @         _ss       _vlwd     .,			/*
		*/ label("Categorical variables")			/*
		*/

  CHECKBOX ck_miss   @         _ls       _iwd      .,			/*
		*/ label("Treat missing values like other values")	/*
		*/ option("missing")					/*
		*/
  CHECKBOX ck_nolab  @         _ms       @         .,			/*
		*/ label("Display numeric codes rather than value labels") /*
		*/ option("nolabel")					/*
		*/
  CHECKBOX ck_plot   @         _ms       @         .,			/*
	*/ label("Produce a bar chart of the relative frequencies")	/*
		*/ option("plot")					/*
		*/
  CHECKBOX ck_sort   @         _ms       @         .,			/*
	*/ label("Display the table in descending order of frequency")	/*
		*/ option("sort")					/*
		*/
END

INCLUDE byifin
INCLUDE weights_f

PROGRAM command
BEGIN
	INCLUDE _by_pr
	put "tab1 "
	varlist main.vl_vars
	INCLUDE _weights_pr
	INCLUDE _ifin_pr
	beginoptions
		option main.ck_miss
		option main.ck_nolab
		option main.ck_plot
		option main.ck_sort
	endoptions
END

⌨️ 快捷键说明

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