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

📄 prtesti2.dlg

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

	VERSION 1.0.0  21dec2002

	Two sample immediate proportions test.
*/

VERSION 8.0

INCLUDE _std_small
INCLUDE header

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

DIALOG main, label("prtesti - Two sample proportion comparisons test")	/*
		*/ tabtitle("Main")
BEGIN
  /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+*/ 
  FRAME    fr_sam1   _lft3_02  _top      _cwd3_02  _ht5h,		/*
		*/ label("")	
  FRAME    fr_sam2   _lft3_03  @         _cwd3_03  @,			/*
		*/ label("")	
  TEXT     tx_sam1   _lft3_2   @         _cwd3_2   .,			/*
		*/ center						/*
		*/ label("Sample 1")
  TEXT     tx_sam2   _lft3_3   @         @         .,			/*
		*/ center						/*
		*/ label("Sample 2")

  FRAME    fr_rows   _lft      _ss       _iwd      _ht3h,		/*
		*/ label("")
  TEXT     tx_size   _ilft     _indent   _cwd3_1   .,			/*
		*/ label("Size")	
  EDIT     en_size1  _ilft3_2  @         _cwd3_2   .,			/*
		*/ numonly						/*
		*/ label("Size for Sample 1")	
  EDIT     en_size2  _ilft3_3  @         _cwd3_2   .,			/*
		*/ numonly						/*
		*/ label("Size for Sample 2")	

  TEXT     tx_prop   _ilft     _ms       _cwd3_1   .,			/*
		*/ label("Proportion")	
  EDIT     en_prop1  _ilft3_2  @         _cwd3_2   .,			/*
		*/ numonly						/*
		*/ label("Proportion for Sample 1")	
  EDIT     en_prop2  _ilft3_3  @         _cwd3_2   .,			/*
		*/ numonly						/*
		*/ label("Proportion for Sample 2")

  DEFINE _x _lft
  DEFINE _cx _spr
  DEFINE _y _xxls
  INCLUDE _sp_level

  CHECKBOX ck_count  _lft      _ls       _iwd      .,			/*
		*/ option("count")					/*
		*/ label("Use integer counts instead of proportions")	
END



PROGRAM command
BEGIN
	put "prtesti "	
	require main.en_size1
	put main.en_size1 
	put " "
	require main.en_prop1
	put main.en_prop1
	put " "
	require main.en_size2
	put main.en_size2 
	put " "
	require main.en_prop2
	put main.en_prop2
	put " "
	beginoptions
		INCLUDE _level_main_pr
		option main.ck_count
	endoptions
END

⌨️ 快捷键说明

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