🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-21-2014 05:36 PM
(2559 views)
Is there a simple way to obtain all possible unique covariate patterns (i.e. unique combinations of variables) given a set of variables, say var1 to varN?
Thanks,
John
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc sort data=have out=want nodupkey;
by <var1 to varN>;
run;
or:
proc sql;
create table want as
select DISTINCT <var1 to varN>
from have
;
quit;
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc sort data=have out=want nodupkey;
by <var1 to varN>;
run;
or:
proc sql;
create table want as
select DISTINCT <var1 to varN>
from have
;
quit;