[SAS base] CramBible A00-211 #1

9월 13, 2018
#1.

The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking price". Which SAS program temporarily replaces the label "Asking Price" with the label "Sale Price" in the output?

A. proc print data=sasuser.houses; label price ="Sale Price"; run;

B. proc print data=sasuser.houses label; label price "Sale Price"; run;

C. proc print data=sasuser.houses label; label price="Sale Price"; run;

D. proc print data=sasuserhouses; price="Sale Price"; run;




==============================================

proc print data=DATANAME LABEL/*라벨 적용 옵션*/; label Variable "NEW_LABEL"; run;

* Label text 256자를 수용한다.

Answer : C

댓글 없음:

[SAS base] CramBible A00-211 #1

#1. The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking price". Whi...

Powered by Blogger.