Dear community,
I am looking for printing all the different combinations of a clinical signs scoring system.
I have six clinical signs (b1,..,b6) which are either normal abnormal (0,1)
I want to print all the 2^6 (64) possible clinical signs association.
I am relatively new with IML of SAS and did not arrive to do it.
please let me know if you have any clue!
I really appreciate
The simplest way is
proc iml; allComb = ExpandGrid(0:1, 0:1, 0:1, 0:1, 0:1, 0:1 ); print allComb;
This solution hard-codes six arguments, If the 'number of clinical signs' might change from study to study, you can use one of the other techniques in the article "Creating a matrix with all combinations of zeros and ones."
The simplest way is
proc iml; allComb = ExpandGrid(0:1, 0:1, 0:1, 0:1, 0:1, 0:1 ); print allComb;
This solution hard-codes six arguments, If the 'number of clinical signs' might change from study to study, you can use one of the other techniques in the article "Creating a matrix with all combinations of zeros and ones."
Thank you so much!
you solved my problem!
Since you are asking for a full-factorial design, you can instead use the MktEx macro. It also makes fractional factorial designs, orthogonal arrays, and nonorthogonal designs, all using the same syntax. You can add the option 'noqc' after 'render' if you do not have the SAS/QC product. For your particular problem, you could also use PROC PLAN.
%mktex(2 ** 6, n=64, levels=0, options=render)
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.