| 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 |
|
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...
|