LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 1998, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page