cii_poisson.dlg

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

DLG
53
字号
/*
  cii_poisson

  VERSION 1.0.0  21dec2002

*/

VERSION 8.0

INCLUDE _std_small
INCLUDE _ht150
INCLUDE header
HELP hlp1, view("help cii")
RESET res1

DIALOG main, label("cii - Poisson confidence intervals and standard errors") /*
		*/ tabtitle("Main")
BEGIN
  /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+*/ 
  SPINNER  sp_exp          _lft      _top      _spwd     .,             /*
  		*/ label("Sample exposure")                             /*
  		*/ min(1)						/*
		*/ max(1000000000)					/*
		*/ default(100)
  TEXT     tx_exp          _spsep    @         _spr      .,		/*
		*/label("Sample exposure")
  SPINNER  sp_event        _lft      _ls       _spwd     .,             /*
  		*/label("Sample events")				/*
  		*/min(1)						/*
		*/max(1000000000)					/*
		*/default(100)
  TEXT     tx_event        _spsep    @         _spr      .,		/*
		*/label("Sample events")

  DEFINE _x _lft 		
  DEFINE _y _ls
  DEFINE _cx _sprb
  INCLUDE _sp_level
END

PROGRAM command
BEGIN
	put "cii "
	put main.sp_exp
	put " "
	put main.sp_event
	beginoptions
		put " poisson "
		INCLUDE _level_main_pr
	endoptions
END

⌨️ 快捷键说明

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