tab1.dlg

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

DLG
61
字号
/*
  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 + =
减小字号Ctrl + -
显示快捷键?