stcox_p.dlg

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

DLG
63
字号
/*
	predict (after stcox)

*!  VERSION 1.1.1  28mar2005

*/

VERSION 9.0

INCLUDE _std_medium
INCLUDE _ht270
INCLUDE header

HELP hlp1, view("help stcox postestimation")
RESET res1

DIALOG main, label("predict - Prediction after estimation") tabtitle("Main")
BEGIN
  INCLUDE  _p_gentype

  GROUPBOX gb_opts           _lft      _ls       _iwd      _ht14,	/*
		*/ label("Produce:")
  RADIO    rb_hr             _indent   _ss       _inwd     ., first	/*
		*/ option(hr)						/*
		*/ label("Hazard ratio (relative hazard), predicted exp(xb)")
  RADIO    rb_xb             @         _ss       @         .,		/*
		*/ option(xb)						/*
		*/ label("Linear prediction")
  RADIO    rb_stdp           @         _ss       @         .,		/*
		*/ option(stdp)						/*
		*/ label("Standard error of the linear prediction")
  RADIO    rb_csnell         @         _ss       @         .,		/*
		*/ option(csnell)					/*
		*/ label("(Partial) Cox-Snell residuals")
  RADIO    rb_deviance       @         _ss       @         .,		/*
		*/ option(deviance)					/*
		*/ label("Deviance residuals")
  RADIO    rb_ccsnell        @         _ss       @         .,		/*
		*/ option(ccsnell)					/*
		*/ label("Cumulative Cox-Snell residuals")
  RADIO    rb_cmgale         @         _ss       @         ., last	/*
		*/ option(cmgale)					/*
		*/ label("Cumulative martingale residuals")

  INCLUDE  _p_nooffset
END

INCLUDE _p_gentype_sc
INCLUDE ifin
INCLUDE _type_list_fd

PROGRAM command
BEGIN
	put "predict "
	put " " /program _p_gentype_output
	INCLUDE _ifin_pr
	beginoptions
		option radio(main rb_hr rb_xb rb_stdp rb_csnell /*
				*/ rb_deviance rb_ccsnell rb_cmgale)
	endoptions
	INCLUDE _p_nooffset_pr
END

⌨️ 快捷键说明

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