| Date: | Thu, 12 Feb 1998 18:34:43 +0100 |
| Reply-To: | Martijn Visser <visser@RULS20.FSW.LEIDENUNIV.NL> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Martijn Visser <visser@RULS20.FSW.LEIDENUNIV.NL> |
| Organization: | CWTS |
| Subject: | Re: OUTPUTwon't generate file |
| Content-Type: | text/plain; charset=us-ascii |
Michael S. Lundy wrote:
>
> Although my program runs w/o any error messages, I can't get SAS to
> produce an actual output file from PROC UNIVARIATE. I'm obviously not a
> "SAS Master," but I do have a rapidly approaching thesis deadline<g>.
>
> Replies to both email and newsgroup appreciated.
> Thanks for any attempts. Michael
--
Hi Michael,
Proc univariate doesn't generate an outputfile but an output-dataset.
If you want the statistics written to the outputfile add:
data _null_;
file three;
put pdempoid pdelmed pdelmode;
run;
Martijn Visser
|