BookmarkSubscribeRSS Feed

[SAS 활용 FAQ] PROCEDURE - PRINT

Started ‎11-01-2021 by
Modified ‎11-01-2021 by
Views 478

 

PROC PRINT DATA=SAS-data-set <options> ;

VAR variable(s) ;

WHERE where-expression ;

BY <DESCENDING> by-variable(s);

RUN;

 

◀예제▶ PROC PRINT 문장의 옵션 및 문장들

 

PROC PRINT DATA=sashelp.class LABEL NOOBS ;

VAR    name age sex;

WHERE age >= 13 and name ? ‘J’;

BY     sex;

RUN;

 

LABEL 옵션

출력물의 칼럼 머릿글에 변수명 대신 라벨 표시.

NOOBS 옵션

좌측 첫 변수로 보이는 OBS를 숨김.

VAR 문장

출력하고자 하는 변수를 순서대로 지정.

WHERE 문장

관측치 선택 조건을 지정.

 

BY 문장

-  BY 변수의 값마다 섹션을 나눔.

-  DATA=의 data set이 BY 변수 기준으로 정렬이 되어 있거나 인덱스 정보가 있어야 함.

Version history
Last update:
‎11-01-2021 11:08 PM
Updated by:
Contributors

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

Article Labels
Article Tags