quantset.src

来自「没有说明」· SRC 代码 · 共 48 行

SRC
48
字号
/*
** quantset.src - reset defaults for Loglinear Module
** (C) Copyright 1988-1998 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF APTECH
** SYSTEMS, INC.    This File Header must accompany all files using
** any portion, in whole or in part, of this Source Code.   In
** addition, the right to create such files is strictly limited by
** Section 2.A. of the GAUSS Applications License Agreement
** accompanying this Software Product.
**
** If you wish to distribute any portion of the proprietary Source
** Code, in whole or in part, you must first obtain written
** permission from Aptech Systems.
**
** Format:    quantset;
**
** Remarks:   If you want to edit the initial defaults you should edit
**            both this file and quantal.dec.
*/

#include gauss.ext
#include quantal.ext

proc (0) = quantset;
    gausset;
    _qriter = 0;    /* iteration results: 0 no, 1 view, 2 print */
    _qrstat = 0;    /* 0 for no desc stats */
    _qrev = 0;      /* 1 for reversed order of comparing */
    _qrfit = 0;     /* 1 print detailed goodness of fit measures */
    _qrpred = 0;    /* 1 for save predicted values */
    _qrpredn = "_qrpred";           /* name of file of predicted values  */
    _qrcatnm = 0;           /* names of outcome categories */
    _qrnsqz0 = 0;           /* Initial maximum number of "squeezes". */
    _qrnsqz1 = 10;          /* maximum # of squeezes after later. */
    _qrsqz = 0;     /* Initally, no squeezes */
    _qrsqtol = .01;         /* Squeeze if change in lik le _qrsqtol  */
    _qrstart = 0;           /* if not zero, user start values are used  */
    _qrlogit = 0;           /* 1 for ordered logit; 0 for ordered probit  */
    _qrnewt = 1;            /* 1 to use Newton Raphson; 0 for scoring */
    _qrcon = 1;
    _qrplot = 1;    /* plot effects */
    _qrtmp = 0;
    _qrycat = 0;
    _qrmiter = 1000;  /* maximum iterations */
endp;

⌨️ 快捷键说明

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