2. Given the non-indexed SAS data set TEMP:
TEMP
X Y
P 52
P 45
A 13
A 56
R 34
R 12
R 78
The following SAS program is submitted:
proc print data = temp;
run;
Which BY statement completes the program, creates a listing report that is grouped by X, and completes without errors?
(A) by X;
(B) by X grouped;
(C) by X notsorted;
(D) by descending X;
这道题大家有什么想法,答案是c,能否解释一下!