Hi,
When i run the following code, i got in the output multiple plots.
proc ttest data=sashelp.class plots=all;
class sex;
var age;
title 'ttest of equality of means';
run;
title;
I want to extract the plots and put some of them in the table two-by-two table. Can i do it?
I know that ODS OUTPUT destination enables to store any value that is produced by any SAS procedure(ods trace), but what about plots?
Thank you