***********************************************************; * Research Computing Services *; * Introduction to SAS *; ***********************************************************; ***********************************************************; * SAS Explore the Data *; * *; * 1. Execute the code as is and explore the output *; * 2. Change the list of the variables in proc statements *; * and examine how output changes; *; * 3. Examine the tables created in the "Results" window *; * 4. Add order=collate option to the proc contents and *; * check the order of the variables listed *; * *; ***********************************************************; * Read more: ; * contents: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n1hqa4dk5tay0an15nrys1iwr5o2.htm *; /* Include sas program that sets input library */ %include "setup.sas"; /* print first 10 rows */ proc print data=mydata.med_visits (obs=10); run; /* examine the content of the dataset */ proc contents data=mydata.med_visits; title "Med_Visits Dataset Contents"; run;