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 (January 2000, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 4 Jan 2000 18:01:43 +0100
Reply-To:     "Christian F.G. Schendera" <schendera@NIKOCITY.DE>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Christian F.G. Schendera" <schendera@NIKOCITY.DE>
Subject:      solution: TABULATE: adding fourth dimension
Comments: To: SASL <SAS-L@UGA.CC.UGA.EDU>
Content-Type: text/plain; charset="iso-8859-1"

From Lauren Haworth I received an very elegant solution to the 4th dim prob. It's my favorite. Best! Chris

* TABLE WITH PAGE CLASSIFICATION AND 2 ROW CLASSIFICATIONS; proc tabulate data = TEST f=8.; var VALUE ; class VAR1 VAR2 VAR3 YEAR ; table VAR1, VAR3*VAR2*( 'MEAN' ), VALUE*YEAR / box=_page_; run;


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