DM 'CLEAR LOG'; DM 'CLEAR OUTPUT'; OPTIONS LINESIZE=72 NODATE NONUMBER; LIBNAME LIBRARY 'a:\'; PROC SORT DATA=LIBRARY.pulse; BY gender weight pulse1; PROC PRINT; VAR gender weight pulse1 pulse2 height activity ran smoker; RUN;