Date: Wed, 1 Feb 2012 14:10:27 -0500
Reply-To: vivian v <v.vivian3@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: vivian v <v.vivian3@GMAIL.COM>
Subject: How to suppress the output in the proc univariate
Content-Type: text/plain; charset=ISO-8859-1
Hi,
I want to suppress the output in proc univariate because it is too much.
Here is my code:
proc univariate data=all2;
var _numeric_;
ods output TestsForLocation=all3;
run;
If I used "noprint" in the proc univariate statement, the ODS output does
not work. How can I suppress the output in this proc? Thanks!
|