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