Dear,
I am trying to calculate number of subjects for dose and Total number in my data. I got the values i need in my output except for "Total " variable. In the program below, there are 6 distinct subjects in the data. But I am getting 8 for total value. Please help in my code to get 6 for 'Total' variable.
Thank you
data one;
input id term$ dose$;
datalines;
1 hache 10mg
1 sache 20mg
2 epain 20mg
2 lpain 10mg
3 rash placebo
4 coli 40mg
5 capin 40mg
6 naus 40mg
6 vomit 20mg
;
proc sql;
create table two as
select count(distinct ID) as NS,dose
from one
where dose in ('10mg' '20mg' '40mg' 'placebo')
group by dose;
quit;
proc transpose data=two out=three(drop=_NAME_);
var NS;
id dose;
run;
data four;
set three;
array data _10mg _20mg _40mg placebo;
do over data;
if missing(data) then data=0;
end;
TOTAL=_10mg + _20mg + _40mg ;
run;
You've made a good case for the UNION operator in SQL (assuming you must use SQL).
proc sql;
create table two as
select count(distinct ID) as NS,dose
from one
where dose in ('10mg' '20mg' '40mg' 'placebo')
group by dose
union
select count(distinct ID) as NS, 'TOTAL' as dose
from one
;
quit;
proc transpose data=two out=three(drop=_NAME_);
var NS;
id dose;
run;
Also you don't need to follow the proc transpose with a data step.
If you're using a report procedure to summarize, it can add the total.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.