문제풀이/기타
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
반응형