Quiz title : Set - 001 - Part 07
Question 1 of 6
The SAS data set ONE contains the variables X,Y,Z and W.
The following SAS program is submitted:;
Proc transpose data =one
Out=trans
Name=new;
By x;
var y;
run;
What are the names of all of the columns created by the TRANSPOSE procedure?