LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (June 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 1 Jun 2006 23:52:18 -0400
Reply-To:   Vijaya Koduru <vijayakoduru@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Vijaya Koduru <vijayakoduru@GMAIL.COM>
Subject:   Re: A VERY VERY URGENT PROC TABULATE QUESTION

looks like ur program is giving the output you wish to.

proc tabulate data=xxxxxx; class sex; var age; table age = 'Age' * (n = 'N' * f =8. mean = 'Mean' * f = 5.1 std = 'Standard Deviation' * f = 5.1 min = 'Min' * f = 3. Max = 'Max'*f = 3.) sex = 'Sex' * (n = 'N' * f = 3. colpctn = '%' * f = 4.1), ALL = 'Total'; run;

i guess there must be some errors in reading data into sas file..so check it once.


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