나루다루

SAS BASE Q66. ods html 본문

문제풀이/기타

SAS BASE Q66. ods html

나루다루 2018. 11. 2. 01:04
728x90
반응형

QUESTION NO: 66

The following SAS program is submitted:

<insert ODS statement here>

proc means data = sasuser.shoes;

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

run;

<insert ODS statement here>

 

Which ODS statements complete the program and send the report to an HTML file?

 

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

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

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

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

 

 

Answer: D





# 문제 풀이

 - ods : ouput delivery service. 결과물을 특정 파일 형태로 만들어서 내보낸다


 - ods html file = ' ' ; ods html close; : 형식 외우기

  - 다른 형식의 파일일 경우 html 대신에 다른 형식을 쓰면 된다. (cvs 같은거)

728x90
반응형

'문제풀이 > 기타' 카테고리의 다른 글

SAS BASE Q68. input @ (???)  (0) 2018.11.02
SAS BASE Q67. 문자형/숫자형 변수  (0) 2018.11.02
SAS BASE Q65. cat & catx & !!  (0) 2018.11.02
SAS BASE Q64. keep  (0) 2018.11.02
SAS BASE Q63. first [수정]  (0) 2018.11.02
Comments