SAS_Institute
A00-280 · Question #81
The following SAS program is submitted: data ae; input PTNO AESOC $ 6-32 AEPT $ 34-56 ONTREAT $; cards; 2001 CARDIAC DISORDERS Cardiac arrest Y 2002 Infections and infestations Empyema Y 2003…
The correct answer is C. 3. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data ae;
input PTNO AESOC $ 6-32 AEPT $ 34-56 ONTREAT $;
cards;
2001 CARDIAC DISORDERS Cardiac arrest Y
2002 Infections and infestations Empyema Y
2003 Hepato-biliary disorders Hepatic failure Y
2004 Infections and infestations Legionellosis N
2005 Nervous system disorders Cerebral hemorrhage Y
2006 Cardiac disorders Cardiac arrest N
2004 Cardiac disorders Atrial fibrillation N
2006 Infections and infestations Wound infection Y
2007 Renal and urinary disorders Renal failure Y
2007 Gastrointestinal disorders Pancreatitis acute Y
2007 Gastrointestinal disorders Gastric ulcer Y
2008 Vascular disorders Hypertension Y
2008 Infections and infestations Sepsis Y
2010 Cardiac disorders Cardiac arrest Y
2010 Renal and urinary disorders Renal failure acute Y
2011 Social circumstances Homicide N
;
run;
proc freq data=WORK.AE noprint;
where ontreat='Y'; tables aesoc / out=WORK.FREQ1;
run;
proc print data=WORK.FREQ1 noobs;
where aesoc='Cardiac disorders';
var count;
run;
What result is displayed for the variable COUNT?
Options
- A1
- B2
- C3
- D4
How the community answered
(41 responses)- A2% (1)
- B2% (1)
- C85% (35)
- D10% (4)
Community Discussion
No community discussion yet for this question.