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.
proc sql inobs=5;
select * from sashelp.afmsg;
quit;
data limited;
set sashelp.afmsg (firstobs=5 obs=10);
run;