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