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;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.