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 (August 2000, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 2 Aug 2000 10:08:39 -0400
Reply-To:     Paige Miller <paige.miller@KODAK.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Paige Miller <paige.miller@KODAK.COM>
Organization: Eastman Kodak Company
Subject:      Re: how to get cumulative freq out of a proc freq
Content-Type: text/plain; charset=us-ascii

Claus Gotfred Rasmussen wrote: > > Hi All, > > When one creates a one way table with proc freq, the cumulative frequencies > are displayed on the screen - can these be included in the output data set > in any way?

SAS 8 Output Delivery System will allow you to put all of the output of PROC FREQ into data sets, with the By variable also in the resulting data set (which I have cleverly named 'newdataset' in the example below);

ods output OneWayFreqs=newdataset; proc freq; table score10; by niche0; run;

-- Paige Miller Eastman Kodak Company paige.miller@kodak.com

"It's nothing until I call it!" -- Bill Klem, NL Umpire "Those black-eyed peas tasted all right to me" -- Dixie Chicks


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