Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
data large;
do i=1 to 1000000;
output;
end;
run;
data small;
set large;
if ^mod(_n_,100000);
run;
proc print;run;
proc sql;
select
variable1, variable2, etc
from your_dataset
where mod(monotonic(),100000)=0
;
quit;