| Date: | Sat, 14 Jul 2007 12:36:42 -0700 |
| Reply-To: | Reeza <fkhurshed@HOTMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Reeza <fkhurshed@HOTMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: need help in proc freq |
|
| In-Reply-To: | <1184405722.482195.177470@57g2000hsv.googlegroups.com> |
| Content-Type: | text/plain; charset="us-ascii" |
|---|
On Jul 14, 3:35 am, Santughosh...@gmail.com wrote:
> Hi all,
>
> Is there any way to find the cell proportions as
>
> (cell frequency)/(total frequency) or (cell frequency)/(row sum)
>
> in proc freq. I searched the help but didn't find it. Plz help me.
proc freq data=have;
tables var1/out=test1 outpct;
run;
|