Handout02 Stat6250 Simple SAS Example from Ch. 2 Example of proc freq and proc means See pages 12 ------------------------------------------------------------------------------ *Program 2-1 Your first SAS program; data demographic; infile "c:\books\learning\mydata.txt"; input Gender $ Age Height Weight; run; title "Gender Frequencies"; proc freq data=demographic; tables Gender; run; title "Summary Statistics"; proc means data=demographic; var Age Height Weight; run; ------------------------------------------------------------------------------