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 test;
a=10; b=20; output;
a=20; b=30; output;
run;
* STATA;
proc export data=test
outfile='m:\test.dta'
dbms=dta;
run;
* SPSS;
proc export data=test
outfile='m:\test.sav'
dbms=sav;
run;