Hi, I have a dataset that looks like this:
ID TRT VID OUTCOME
1 0 1 1
1 0 2 0
1 0 1 1
1 0 2 0
2 1 1 1
2 1 2 1
I would like my final dataset to look like this:
ID TRT VID OUTCOME
1 0 1 1
2 1 1 1
I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!
@kmardinian wrote:
Hi, I have a dataset that looks like this:
ID TRT VID OUTCOME
1 0 1 1
1 0 2 0
1 0 1 1
1 0 2 0
2 1 1 1
2 1 2 1
I would like my final dataset to look like this:
ID TRT VID OUTCOME
1 0 1 1
2 1 1 1
I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!
If you don't need the other variables at all easiest may be:
Proc sql;
create table idonly as
select distinct id
from yourdatasetname;
quit;
@kmardinian wrote:
Hi, I have a dataset that looks like this:
ID TRT VID OUTCOME
1 0 1 1
1 0 2 0
1 0 1 1
1 0 2 0
2 1 1 1
2 1 2 1
I would like my final dataset to look like this:
ID TRT VID OUTCOME
1 0 1 1
2 1 1 1
I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!
If you don't need the other variables at all easiest may be:
Proc sql;
create table idonly as
select distinct id
from yourdatasetname;
quit;
Thank you, that is exactly what I was looking for!
data have;
input ID TRT VID OUTCOME;
cards;
1 0 1 1
1 0 2 0
1 0 1 1
1 0 2 0
2 1 1 1
2 1 2 1
;
proc sort data=have(where=(outcome=1)) out=want nodupkey;
by id;
run;
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.