x
Hi guys, I would like to obtain the next table total:
N TRT col0
1 2 Number of subjects
. 1 Number of subjects
I use proc sql to try to get this:
input subjid trt fday tday;
datalines;
1 1 1 5
2 1 . 4
2 1 . 3
3 1 1 4
3 2 1 -5
4 2 1 2
4 1 1 4
;
run;
proc sql;
create table total as
select count(distinct subjid) as n, trt 'Treatment', 'number of subjects' as col0
from new
where fday ne . and tday le 0
group by trt;
quit;
proc print data=total noobs; run;
But I obtain only one row:
N TRT col0
1 2 Number of subjects
Not appearing the row with missing data.
Can anyone help me to write the code via sql to consider this row with missing data?
Thanks,
V
You can't select 1 anymore because your WHERE condition has already exclude it. But you can get it by your hand.
data new; input subjid trt fday tday; datalines; 1 1 1 5 2 1 . 4 2 1 . 3 3 1 1 4 3 2 1 -5 4 2 1 2 4 1 1 4 ; run; proc sql; create table total as select count(distinct subjid) as n, trt 'Treatment', 'number of subjects' as col0 from new where fday ne . and tday le 0 group by trt union select .,1,'number of subjects' from new(obs=1) ; quit;
Ksharp
Only one row is read from your table.
Only row
3 2 1 -5
matches
where fday ne . and tday le 0
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.