문제풀이/기타
SAS BASE Q71. firstobs & obs
나루다루
2018. 11. 2. 01:38
728x90
QUESTION NO: 71
Given the following code:
proc print data=SASHELP.CLASS(firstobs=5 obs=15);
where Sex='M';
run;
How many observations will be displayed?
A. 11
B. 15
C. 10 or fewer
D. 11 or fewer
Answer: D
# 문제 풀이
- firstobs : 첫번째로 불러 올 관측치의 번호
- obs = lastobs : 마지막으로 불러 올 관측치의 번호
- firstobs=5 obs=15 : 5번째 관측치부터 15번째 관측치까지 표시함
728x90
반응형