BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
UcheOkoro
Lapis Lazuli | Level 10

Hello,

 

Please, I am working on some conditional logistic regression and part of the output is following

UcheOkoro_0-1611683915039.png

I cannot find the meaning of "number of observations informative " and why it is low.

The following is my code

proc logistic data = Avera_matched_data ;
 CLASS telemed_use(DESC)  chronic_dialysis(DESC) total_sofa1_ed2(DESC) mode_arrival(DESC) pmh_cancer(DESC) pmh_diabetes(DESC) 
       pmh_asthma(DESC) pmh_chf(DESC) pmh_hypertension(DESC) pmh_dialysis(DESC)
        pmh_copd(DESC) pmh_cirrhosis(DESC) pmh_transplant(DESC) Lactate1_cat(DESC) Age2(DESC) sex(DESC);
  model new_dialysis(event='1') = telemed_use apache_total surgery chronic_dialysis total_sofa1_ed2 mode_arrival pmh_cancer 
pmh_diabetes pmh_asthma pmh_chf pmh_hypertension pmh_dialysis pmh_copd pmh_cirrhosis pmh_transplant Lactate1_cat Age2 infection_ed_source2 sex /MAXITER=100 ITPRINT;
  strata _MatchID;
  ODS OUTPUT ParameterEstimates=new_dialysis1 ODDSRATIOS=lgsodds;
  BY _Imputation_;
   title " Model of New Dialysis by telemed";
run;

Thank you in advance for your assistance.

1 ACCEPTED SOLUTION

Accepted Solutions
StatDave
SAS Super FREQ

As stated in the description of the STRATA statement:

"Strata that contain only events or only non-events are reported in this table, but such strata are uninformative and are not used in the analysis."

So, that is the count of all observations not involved in those uninformative strata.

View solution in original post

2 REPLIES 2
StatDave
SAS Super FREQ

As stated in the description of the STRATA statement:

"Strata that contain only events or only non-events are reported in this table, but such strata are uninformative and are not used in the analysis."

So, that is the count of all observations not involved in those uninformative strata.

UcheOkoro
Lapis Lazuli | Level 10

Thank you so much for your help.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 830 views
  • 2 likes
  • 2 in conversation