My problem
I should display a LASR-table in SAS/VA. For each row of the LASR-table, the report should have one column, with the class variable and a dozen of analysis variables. I am not supposed to do any data preparation (i.e. not use Data Builder).
How can I get all analysis variables underneath each other?
Example
In base SAS proc tabulate
, I can choose if my analysis variabel are side by side or above each other:
proc tabulate data=sashelp.iris;
class Species;
var PetalWidth SepalWidth PetalLength SepalLength;
table Species * (PetalWidth SepalWidth PetalLength SepalLength); /* side by side */
table (PetalWidth SepalWidth PetalLength SepalLength), Species; /* above each other */
run;
In enterprise guide, I can do the same
In SAS/VA, I always get my analysis variable side by side. Can I change that?