Changeset 26906 in main


Ignore:
Timestamp:
03/02/23 08:33:50 (4 weeks ago)
Author:
Maria Baron
Message:

suppress zero count unknowns

File:
1 edited

Legend:

Unmodified
Added
Removed
  • adopters/nj/trunk/src/main/ibisq/qModules3/hiv/RateCrude100K.def

    r26872 r26906  
    201201                end;
    202202                *if pop=. then redflag=put('', $12.); *no value attribute for missing crossby values;
     203
     204                if popcount eq . and n eq 0 then delete;  *deletes zero rows with no corresponding pop estimate, e.g. Sex unknown;
     205               
     206                if popcount eq . and n ne 0 then do;    *no matching denominator value, e.g., Other Race;
     207                        rateper = put('.', 8.0);
     208                        LL = put('.', 8.0);
     209                        UL = put('.', 8.0);
     210                        redflag= put('NoPop', $12.);
     211                end;
     212
    203213        proc print data=tmp noobs;  title2 '6. TMP - final dataset to pass to IBIS View app';
    204214        run;
Note: See TracChangeset for help on using the changeset viewer.