LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 6 Apr 2007 15:52:23 +0000
Reply-To:   toby dunn <tobydunn@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   toby dunn <tobydunn@HOTMAIL.COM>
Subject:   Re: Proc Freq
Comments:   To: ramsathish@GMAIL.COM
In-Reply-To:   <1175871781.933126.100970@d57g2000hsg.googlegroups.com>
Content-Type:   text/plain; format=flowed

Ram ,

YOu havent told SAS not to print the Freq output.

It is simple to do:

ODS Listing Close ; ODS output OneWayFreqs=q1;

proc freq data=ques1; tables response/nocum; run;

ODS Listing ;

Toby Dunn

To sensible men, every day is a day of reckoning. ~John W. Gardner

The important thing is this: To be able at any moment to sacrifice that which we are for what we could become. ~Charles DuBois

Don't get your knickers in a knot. Nothing is solved and it just makes you walk funny. ~Kathryn Carpenter

From: RAMS <ramsathish@GMAIL.COM> Reply-To: RAMS <ramsathish@GMAIL.COM> To: SAS-L@LISTSERV.UGA.EDU Subject: Proc Freq Date: Fri, 6 Apr 2007 08:03:01 -0700

Dear All,

I have a data of students opinion about their teachers. I need calcuate a response (1 to 5) pecentage of each question. And i need to save these counts and percentages in a new dataset.

To do that i wrote a code of

ods output OneWayFreqs=q1;

proc freq data=ques1; tables response/nocum; run;

I am getting this output in the output page, actually i dont need a PROC FREQ OUTPUT. So i wrote "NOPRINT" in Proc Freq.

But SAS is not creating a new sas dataset if i write "NOPRINT". How to solve this issue.

Anyone please help me.

Thanks in advance.

_________________________________________________________________ Mortgage refinance is Hot. *Terms. Get a 5.375%* fix rate. Check savings https://www2.nextag.com/goto.jsp?product=100000035&url=%2fst.jsp&tm=y&search=mortgage_text_links_88_h2bbb&disc=y&vers=925&s=4056&p=5117


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