Date: Thu, 31 Jul 2008 10:51:40 -0400
Reply-To: Anil Anand <anilkranand@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Anil Anand <anilkranand@GMAIL.COM>
Subject: Proc Freq
Content-Type: text/plain; charset=ISO-8859-1
* I have the following Proc Freq with the Output shown below:
proc* *freq* data=pop00;
title1 "Neighborhood Population by Age";
title2 "Women of Childbearing Age";
where (*15*<=age<=*44* and sex=*2*);
tables sex*tract*age/norow nopercent nocol nocum;
format tract neigh. sex sexa. age chldbear.;
* run*;
*Output:*
**
*Tract Age *
*Frequency 15-44 Total *
Allston 3600 3600
North End 1200 1200
South End 2640 2640
Roxbury 3241 3241
HOW can I remove the column for *Total* which is the last column in the
output.
Thanks so much for your help.
Anil