Hi I have a patient data which is completely in Rows.
I am to transpose the data.
the data is somthing like this.
please see the attached file.
I wrote a code which is as follows.
but it says the variables are repeated, and yes they are because it is a multiple response.
Can you please help me.
I am to transpose the data.
the data is somthing like this.
please see the attached file.
I wrote a code which is as follows.
Code:
proc transpose data=X
out=laros
name=column_transposed;
by regid;
id variable;
run;
but it says the variables are repeated, and yes they are because it is a multiple response.
Can you please help me.