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 (July 2006, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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.


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