Login  Register

GLMM Logit link - error message

Posted by Made on May 11, 2016; 8:50pm
URL: http://spssx-discussion.165.s1.nabble.com/GLMM-Logit-link-error-message-tp5732141.html

Hello

I am working on a research with logistic regression, but when I enter some extra variables to a model which ran just fine, I receive the following message:
glmm: There are no valid records for the LOGIT link function. No output will be displayed. Execution of this command stops.

I am working with SPSS 23. It is a rather small database I am working with, but I would be surprised if that was the cause of all trouble. The Syntax I am using is the following:


DATASET ACTIVATE DataSet1.
*Generalized Linear Mixed Models.
GENLINMIXED
  /DATA_STRUCTURE SUBJECTS=mergeid REPEATED_MEASURES=DummyVignetteAdemhaling*
    DummyVignetteConcentratie*DummyVignHoofdpijn*DummyVignetteSlaap*DummyVignetteStappen
    COVARIANCE_TYPE=DIAGONAL
  /FIELDS TARGET=DummySubjGez TRIALS=NONE OFFSET=NONE
  /TARGET_OPTIONS DISTRIBUTION=BINOMIAL LINK=LOGIT
  /FIXED  EFFECTS=Autochtoon agecentered Gender DummyAziĆ« DummyOostEU Dummysubsaharisch
    DummyZuidAmerika DummyWestEU USE_INTERCEPT=TRUE
  /RANDOM USE_INTERCEPT=TRUE COVARIANCE_TYPE=VARIANCE_COMPONENTS
  /BUILD_OPTIONS TARGET_CATEGORY_ORDER=DESCENDING INPUTS_CATEGORY_ORDER=DESCENDING
    MAX_ITERATIONS=100 CONFIDENCE_LEVEL=95 DF_METHOD=RESIDUAL COVB=MODEL PCONVERGE=0.000001(ABSOLUTE)
    SCORING=0 SINGULAR=0.000000000001
  /EMMEANS TABLES=Autochtoon CONTRAST=NONE
   /EMMEANS TABLES=Gender CONTRAST=NONE
   /EMMEANS TABLES=DummyAziĆ« CONTRAST=NONE
   /EMMEANS TABLES=DummyOostEU CONTRAST=NONE
   /EMMEANS TABLES=Dummysubsaharisch CONTRAST=NONE
   /EMMEANS TABLES=DummyZuidAmerika CONTRAST=NONE
   /EMMEANS TABLES=DummyWestEU CONTRAST=NONE
  /EMMEANS_OPTIONS SCALE=ORIGINAL PADJUST=LSD.

Is there anybody familiar with this error and, more important, has a solution? Thanks in advance.