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 blank1 ;
dummy1 ='';
dummy2 = 999 ;
label dummy1 = 'Dummy variable 1'
dummy2 = 'Dummy variable 2';
stop ;
run;
proc print;run;
proc sql ;
create table blank2
(
DUMMY1 CHAR(1) LABEL='Dummy variable 1',
DUMMY2 NUM (8) LABEL='Dummy variable 2'
) ;
quit ;
options missing=' ';
data class ;
set sashelp.class ;
call missing(x,y,z) ;*Create missing numerics x,y,z;
run;
proc report data=class ;
columns _all_ ;
define _all_ / width=10 ;
run;
data class ;
set sashelp.class ;
retain x y z '';
run;
proc report data=class ;
columns _all_ ;
define _all_ / width=10 ;
run;