Is there a way to put the code above the output made in the results viewer?
For a simple example:
proc freq data=Depend;
tables NUMDEPEN;
run;
proc univariate data=Depend;
var NUMDEPEN;
run;
Can I put the code for the frequency in the results viewer and then see the results, followed by the univariate code and then see the results? This would make it much easier to see what exactly is happening when the sample is restricted on certain variables, or what specific options were used (for more advanced code).
Thank you.