Date: Mon, 10 Jul 2006 17:08:19 -0400
Reply-To: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Subject: Re: One Way Table
On Mon, 10 Jul 2006 16:36:04 -0400, Xu Libin <Libin.Xu@IRS.GOV> wrote:
>Dear Listers,
>
> I would like to create a one-way table with eight variables. All
>the variables have four values one through four. Proc freq produces
>eight tables for me. Can proc tabulate do this? I did not find the
>syntax for this in the SAS online help. Can someone provide some
>assistance to me on this. Thanks a lot.
>
>Libin
>
>
Try something like
proc tabulate data=sashelp.class;
class age height weight;
table age height weight, n;
run;
Such concatenation of CLASS variables falls within documented syntax.
|