clogit_common_p.idlg

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

IDLG
59
字号
/*
	clogit_common_p.idlg

	This is an INCLUDE file for the -predict- dialogs that go with
	-clogit- and -xtlogit, fe-.

*!  VERSION 1.0.0  31mar2005

*/

INCLUDE _std_medium
INCLUDE header

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

  GROUPBOX gb_opts       _lft      _ls     _iwd     _ht10,	/*
		*/ label("Produce:")
  RADIO    rb_pc1     _indent      _ss    _inwd        ., first /*
		*/ option(pc1)					/*
		*/ onclickon(script _p_gentype_score_off)	/*
		*/ label("Predicted Pr(outcome | single outcome within group)")
  RADIO    rb_pu0           @      _ss        @        .,	/*
		*/ option(pu0)					/*
		*/ onclickon(script _p_gentype_score_off)	/*
		*/ label("Predicted Pr(outcome | fixed effect is zero)")
  RADIO    rb_xb            @      _ss        @        .,	/*
		*/ option(xb)					/*
		*/ onclickon(script _p_gentype_score_off)	/*
		*/ label("Linear prediction (xb)")
  RADIO    rb_stdp          @      _ss        @        .,	/*
		*/ option(stdp)					/*
		*/ onclickon(script _p_gentype_score_off)	/*
		*/ label("Standard error of the linear prediction")
  RADIO    rb_score         @      _ss        @        ., last	/*
		*/ option(score)				/*
		*/ onclickon(script _p_gentype_score_on)	/*
		*/ label("Equation-level scores")

  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_pc1 rb_pu0 rb_xb rb_stdp rb_score)
	endoptions
	INCLUDE _p_nooffset_pr
END

⌨️ 快捷键说明

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