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

📄 ktau.dlg

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

*!  VERSION 1.1.2  01apr2005

*/

VERSION 9.0

INCLUDE _std_large
DEFINE _dlght 410
INCLUDE header

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

DIALOG main, label("ktau - Kendall's rank correlation coefficients")	///
	tabtitle("Main")
BEGIN
  TEXT	    tx_var		_lft	_top	_iwd	.,		///
	label("Variables: (leave empty for all)")
  VARLIST  vl_var		@	_ss	@	.,		///
	label("Variables")

  GROUPBOX gb_stats		_lft	_ms	_iwd	_ht7,		///
	label("List of statistics")

  CHECKBOX ck_taua		_indent	_ss	_cwd2	.,		///
	label("Display tau_a (default)") option(taua)
  DEFINE holdy @y
  CHECKBOX ck_taub		@	_ms	@	.,		///
	label("Display tau_b") option(taub)
  CHECKBOX ck_score		@	_ms	@	.,		///
	label("Display score") option(score)
  CHECKBOX ck_se		_lft2	holdy	_cwd2	.,		///
	label("Display standard error of score") option(se)
  CHECKBOX ck_obs		@	_ms	@	.,		///
	label("Display number of observations") option(obs)
  CHECKBOX ck_p			@	_ms	@	.,		///
	label("Display significance level") option(p)

  GROUPBOX gb_displayadj	_lft	_xls	_iwd	_ht4h,		///
  	label("Display adjustment")
  CHECKBOX ck_print		_indent	_ss	_ckwd	.,		///
	onclickoff(main.ed_print.disable)				///
	onclickon(main.ed_print.enable)
  EDIT     ed_print		_cksep	@	_spwd	.,		///
	default(0.10) option(print)
  TEXT	   tx_print		_spsep	@	_rbsprb	.,		///
	label("Significance level for displaying coefficients")

  CHECKBOX ck_star		_ilft	_ms	_ckwd	.,		///
	label("")							///
	onclickoff(main.ed_star.disable)				///
	onclickon(main.ed_star.enable)
  EDIT     ed_star		_cksep	@	_spwd	.,		///
	default(0.05) option(star)

  TEXT     tx_star		_spsep	@	_rbsprb	.,		///
	label("Significance level for displaying with a star")


  GROUPBOX gb_significance	_lft	_xls	_iwd	_ht6,		///
	label("Significance levels")
  RADIO    rb_none		_indent	_ss	_inwd	.,		///
	label("Do not adjust significance level") option(NONE) first
  RADIO    rb_bonferroni	@	_ss	@	.,		///
	label("Use Bonferroni-adjusted significance level")		///
	option(bonferroni)
  RADIO    rb_sidak		@	_ss	@	.,		///
	label("Use Sidak-adjusted significance level")			///
	option(sidak)  last

  CHECKBOX ck_pw		_lft	_xls	_iwd	.,		///
	label("Calculate all pairwise correlation coefficients")	///
	option(pw)
  CHECKBOX ck_mat		@	_ms	@	.,		///
	label("Force matrix table output") option(matrix)
END

INCLUDE byifin

PROGRAM stats_option_output
BEGIN
	option main.ck_taua
	option main.ck_taub
	option main.ck_score
	option main.ck_se
	option main.ck_obs
	option main.ck_p
END

PROGRAM command
BEGIN
	INCLUDE _by_pr
	put " ktau "
	varlist [main.vl_var]

	INCLUDE _ifin_pr
	beginoptions
		if (main.ck_taua | main.ck_taub | main.ck_score | main.ck_se | main.ck_obs | main.ck_p) {
			put "stats("
			put /program stats_option_output
			put ") "
		}
		if main.ck_print{
			optionarg main.ed_print
		}
		if main.ck_star{
			optionarg main.ed_star
		}
		option radio(main rb_none rb_bonferroni rb_sidak)
 		option main.ck_pw
 		option main.ck_mat
     endoptions
END

⌨️ 快捷键说明

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