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 (April 2012, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 17 Apr 2012 10:56:35 -0400
Reply-To:   oloolo <dynamicpanel@YAHOO.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   oloolo <dynamicpanel@YAHOO.COM>
Subject:   Re: PROC FREQ Question
Comments:   To: Casey Dietz <cldietz@GMAIL.COM>

in addition to ODS OUTPUT in PROC FREQ, you can try what this code does:

proc means data=sashelp.cars noprint ; class Make Type Origin; ways 1; var _numeric_; output out=_means n()=freq; run;

On Mon, 16 Apr 2012 11:39:55 -0400, Casey <cldietz@GMAIL.COM> wrote:

>Hi All, > >I'm doing a frequency, and am doing the frequency on a list of non >continous variables. I would like the output in a dataset, but the out= >statement only outputs the last variable. >Any suggestions? > >proc freq data=sashelp.shoes; >table region product subsidiary /out=mydata; >run; > >This only gives me a table with subsidiary...


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