

libname example sasiola host="grid001.unx.sas.com" port=10010 tag='hps';
data example.prdsale; set sashelp.prdsale; run;
proc imstat data=example.prdsale;
percentile actual; 1
run;
percentile actual / groupby=(region division); 2
run;
percentile actual / values=(3 5 10 90 95 97); 3
quit;

