BookmarkSubscribeRSS Feed
amariatrujilloz
Calcite | Level 5

Saludos

 

Estoy utilizando el PROC GLIMMIX para ajustar un modelo conjunto

data WORK.IMPORT_V;
      length dist $7;
      set WORK.IMPORT;
      response=(VAR16=1); 
      dist="Binary";
      output;
      response = Rep;
      dist="Poisson";
      output;
      keep APR APT Diagnostico Cursos IDs Escuela response dist ;
   run;
   
    proc glimmix data= work.import_v (where= (dist="Binary"));
    class IDs Escuela Cursos;
      model response(event='1') = APR APT Diagnostico / s dist=binary;
   run;
   
   proc glimmix data=work.import_v(where=(dist="Poisson"));
   class IDs Escuela Cursos;
      model response = APR APT Diagnostico / s dist=Poisson;
   run;
   
   proc glimmix data=work.import_v;
      class dist;
      class IDs Escuela Cursos;
      model response(event='1') = dist dist*APR dist*APT dist*Diagnostico /
                       noint s dist=byobs(dist);
   run;
   
   proc glimmix data=work.import_v;
      class IDs dist;
      class Escuela Cursos;
      model response(event='1') = dist dist*APR dist*APT dist*Diagnostico /
                       noint s dist=byobs(dist);
      random int / subject=IDs;
   run;
   

 El modelo conjunto consta de dos submodelos, un logístico y otra poisson. La salida de dicho modelo me dice que la matriz G estima que no es claramente positiva. Adjunto imagen con la salida. 

salida.PNG

 

 

 

 

 

 

 

La verdad no se como interpretar  esta salida. Si tienes la oportunidad, también me gustaría contar con apoyo literario ya que no  encuentro suficiente informacion del tema para aclarar mis dudas.

 

Mis datos se encuentran organizados de la siguiente manera:

 

IdentificacionesCursosNotasRepsSexoAnoEscuelaDistritoIGSAPTOABRNivel1Nivel2NacimientoDiagnosticoVAR16
00BA1F4E0CMATE_3171W1F2013PrivadaMayaguez32354454200199500
00D72CEB8AMATE_3171F2F2013PublicaMayaguez30553152800199500
00A362D565MATE_3171W1F2013PublicaMayaguez30553152800199500
00AA00E246MATE_3172hacer1F2013PublicaMayaguez30553152800199501
00CD4D51FAMATE_3171hacer1METRO2013PublicaMayaguez32758958402199401
00CD4D51FAMATE_3172segundo2METRO2013PublicaMayaguez32758958402199401
00CD4D51FAMATE_3031W1METRO2013PublicaMayaguez32758958402199400

 

 

Agradezco su amable atención y colaboración. 

2 REPLIES 2
Rick_SAS
SAS Super FREQ

I have never used the DIST=BYOBS option, but sometimes a singular G matrix can mean that the data do not fit the model. I see that the 

dist*APT and dist*Diagnostico effects

are not significant. Try removing those effects from the model.

 

amariatrujilloz
Calcite | Level 5
Gracias! Probaré haciendo eso

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 911 views
  • 0 likes
  • 2 in conversation