Date: Wed, 23 Jan 2008 06:30:17 -0500
Reply-To: Ken Borowiak <EvilPettingZoo97@AOL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ken Borowiak <EvilPettingZoo97@AOL.COM>
Subject: Re: proc freq
On Wed, 23 Jan 2008 16:40:41 +0530, Mohit Bhatia <mohit.b.bhatia@AEXP.COM>
wrote:
>Hi,
>
>Is there not to display row pct / col pct in proc freq output?
>
>thanks
>
Mohit,
Use the NOCOL and NOPERCENT options on the TABLE statement.
proc freq data=sashelp.class ;
table age / nocol nopercent ;
run ;
HTH,
Ken
|