Can someone help with coding for randomization of the sample where the outcome is binary and age is stratified
Plz post the output you want. and Better give an example .
proc plan seed=123; factors age=10 binary=2; output out=want; quit;
I suppose you run SAS Viya, therefore take a look at the specific action.
copied from the sas documentation:
proc cas;
loadactionset "sampling";
action stratified result=r/table={name="hmeq",groupby={"bad"}}
samppct=10 samppct2=20 partind="TRUE" seed=10
output={casout={name="out",replace="TRUE"},
copyvars={"job","reason","loan","value","delinq","derog"}};
run;
print r.STRAFreq; run;
quit;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.