Date: Thu, 28 Aug 2003 07:08:49 -0400
Reply-To: Jay Weedon <jweedon@EARTHLINK.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jay Weedon <jweedon@EARTHLINK.NET>
Organization: http://extra.newsguy.com
Subject: Re: PROC FREQ output
Content-Type: text/plain; charset=us-ascii
On 28 Aug 03 04:01:28 GMT, gulixion@PILOT.MSU.EDU (Lixiong Gu) wrote:
>It seems that PROC FREQ can only output statistics for the last table. Is
>there a way to make it output statistics for multiple tables without writing
>one proc command for each table? Thanks!
>
>Proc freq;
> Tables var1 * (var2 var3 var4) / chisq;
> output out = chisqout chisq N OR;
>run;
Either
1. Use ODS
or
2. Use PROC SUMMARY
JW
|