나루다루

SAS BASE Q81. ods html 본문

Study/SAS BASE

SAS BASE Q81. ods html

나루다루 2018. 11. 2. 23:52
728x90
반응형

QUESTION NO: 81

The following SAS program is submitted:

<_insert_ods_code_>

proc means data=SASUSER.SHOES;

where Product in ('Sandal' , 'Slipper' , 'Boot');

run;

<_insert_ods_code_>

 

Which ODS statements inserted, respectively, in the two location above creates a report stored in an html file?

 

 

 

A. ods html open='sales.html'; ods html close;

B. ods file='sales.html' / html; ods file close;

C. ods html file='sales.html'; ods html close;

D. ods file html='sales.html'; ods file close;

 

 

Answer: C





# 문제 풀이

 - ods html file = ' ' ; ods html close;

 - html 형식으로 파일을 만들어 내보냄

728x90
반응형

'Study > SAS BASE' 카테고리의 다른 글

SAS BASE Q83. 엑셀 형식으로 내보내기  (0) 2018.11.03
SAS BASE Q82. if문  (0) 2018.11.03
SAS BASE Q80. tables(이원분할표)  (0) 2018.11.02
SAS BASE Q79. 문자형/수치형 변수  (0) 2018.11.02
SAS BASE Q78. infile  (0) 2018.11.02
Comments