Here is my question can you label types within a variable in the by statement. (code) has 6 types (artr, antr, altr, altl, artl, antl) how can I label the mean and std for those types. I know how it can be done for variables. But I can't figure it out for types within a variable. Except for transposing it, is that the only way?
proc means data=arrowsort2 noprint;
by code;
var RTcLag;
output out=mc1 ;
run;
proc means data=arrowsort2 noprint;
by code;
var RTcLag;
output out=mc1 ;
run;