How to split the data into three randoms sets: 60% in a building set, %10 in a test set and 30% in a validation set.
You can use the GROUPS= option in proc surveyselect. You must provide the exact set sizes of calculate them like this:
proc sql;
select
round(0.6*count(*)) as n1,
round(0.1*count(*)) as n2,
count(*) - calculated n1 - calculated n2 as n3
into :n1, :n2, :n3
from sashelp.class;
quit;
proc surveyselect data=sashelp.class groups=(&n1 &n2 &n3) out=samples;
run;
You can use the GROUPS= option in proc surveyselect. You must provide the exact set sizes of calculate them like this:
proc sql;
select
round(0.6*count(*)) as n1,
round(0.1*count(*)) as n2,
count(*) - calculated n1 - calculated n2 as n3
into :n1, :n2, :n3
from sashelp.class;
quit;
proc surveyselect data=sashelp.class groups=(&n1 &n2 &n3) out=samples;
run;
data train validate test;
set sashelp.heart;
call streaminit(123456789);
x=rand('table',0.6,0.3,0.1);
if x=1 then output train;
else if x=2 then output validate;
else output test;
drop x;
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.