Question: how come the answer is C not A? 14. If you want to sort your data and create a temporary data set named socks to
how come the answer is C not A?

14. If you want to sort your data and create a temporary data set named socks to store the sorted data, which of the following sets of code should you submit? Set A: PROC SORT data = work. socks out = drawer . one; by color; RUN ; Set B: PROC SORT color out = socks; RUN; Set C: PROC SORT data = drawer. one out = work. socks; by color; RUN ; Set D: PROC SORT from drawer.one to socks; by color; RUN; OA) Set A OB) Set B OC) Set C OD) Set D Feedback: The OUT = option tells SAS to store the data, sorted BY color, in a temporary data set called work.socks. Points Earned: 3.0/3.0 Correct Answer(s): C
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
