In the original SAS program, I could use "ods output" to export some of the results from some Proc procedures, I could make those p-values from t-tests, or means or SDs into a new data sets For example: ods output "Summary statistics"=means; proc means data=meg1 mean stderr q1 q3; class num velocity; var p; run; ods output close; In this step I can export the Proc means result in to dataset "means". I could see "Summary statistics" was listed on the left side for the SAS program "Result" window, so I could use the ODS OUTPUT statement to export it into a new data set. But in SAS enterprise guide there is no such "result" window, how can I do it? How to export procedure results into new datasets? Thanks!
... View more