SAS Base, A00-211 Crambible 

SAS 베이스 자격증 


QUESTION NO: 54

Read the table Table of region by product region product Frequency Percent Row Pct Col Pct corn cotton oranges Total EAST 2 1 1 4 






The following SAS program is submitted: 


proc freq data = sales;
<insert TABLES statement here>
run;


The following output is created by the FREQUENCY procedure: 


The FREQ Procedure
Table of region by product
region product

Frequency
Percent
Row Pct
Col Pct corn cotton oranges Total


EAST 2 1 1 4

22.22 11.11 11.11 44.44

50.00 25.00 25.00

50.00 33.33 50.00 SOUTH 2 2 1 5 22.22 22.22 11.11 55.56

40.00 40.00 20.00
50.00 66.67 50.00 Total 4 3 2 9 4444 33.33 22.22 100.00


Which TABLES statement(s) completed the program and produced the output?


A. tables region product;
B. tables region * product;
C. tables product * region;
D. tables product; tables region;




TABLES 행*열 형태로 넣어줘야하고요. 결과값 이미지를 보면 테이블 위에 힌트가 있습니다. Region 과 Product가 있어서 답은 B가 됩니다. 


Answer: B 


반응형

+ Recent posts