일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 에듀윌 봉모
- 코레일
- sas base
- 강웅
- 아비무쌍 #오존
- 객관식 경영학 정오표
- 부교공 면접
- 아비무쌍
- 토르마무
- 신입사원 채용
- 부산교통공사
- 객경
- 김윤상 객경 정오표
- 천소소
- 금강마신
- 2024 부산교통공사 면접
- 김윤상
- 부교공
- 객관식 경영학
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 에듀윌특별판
- 노경찬
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 무협
- Today
- Total
나루다루
SAS BASE Q25. define[수정] ?? 본문
QUESTION NO: 25
Given the SAS data set SASUSER.HOUSES:
Obs style bedrooms baths price sqteet street
1 CONDO 2 1.5 80050 1200 MAIN
2 CONDO 3 2.5 79350 1300 ELM
3 CONDO 4 2.5 127150 1400 OAK
4 CONDO 2 2.0 110700 1100 FIFTH
5 TWOSTORY 4 3.0 107250 2100 SECOND
6 TWOSTORY 2 1.0 55650 1600 WEST
7 TWOSTORY 2 1.0 69250 1450 NORTH
6 TWOSTORY 4 2.5 102950 2000 SOUTH
The following SAS program is submitted:
proc report data = sasuser.houses nowd headline;
column style price;
where price lt 100000;
<insert DEFINE statement here>
define price / mean width = 9 format = dollar12.;
title;
run;
The following output is desired:
style price
CONDO $79,700
TWOSTORY $62550
Which DEFINE statement completes the program and produces the desired output?
A. define style / width = 9;
B. define style / order width = 9;
C. define style / group width = 9;
D. define style / display width = 9;
Answer: C
# 문제 풀이
- column 변수 : 변수에 대해서 리포트를 하겠다. (proc report 단계에서)
- define문 : define 변수 / 옵션 꼴
- define 변수 / order : 변수에 대해 오름차순 정렬을 하고 각 변수별로 관측치 나열. 이 때 각 변수의 그룹에서 순서변수로 지정된 변수는 한 번 씩만 출력.
- define 변수 / group : 변수의 각 그룹별로 묶어서 출력.
- define 변수 / display : 변수를 있는 그대로 출력.
> 1번 결과
> 2번 결과
> 3번 결과
> 4번 결과
'Study > SAS BASE' 카테고리의 다른 글
[SAS BASE] Q54. tables (0) | 2018.05.23 |
---|---|
[SAS BASE] Q53. array & _temporary_ (0) | 2018.05.23 |
SAS BASE Q24. weekday (0) | 2018.03.01 |
SAS BASE Q23. _ & % (0) | 2018.03.01 |
SAS BASE Q22. ??? (0) | 2018.03.01 |