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 (July 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sat, 18 Jul 2009 13:50:50 +0800
Reply-To:   "John(Jiangtang) Hu" <jiangtanghu@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "John(Jiangtang) Hu" <jiangtanghu@GMAIL.COM>
Subject:   ods output in proc freq: how to generate multiple ods tables in one clause
Content-Type:   text/plain; charset=ISO-8859-1

Hi, SAS-Lers,

Just follows SAS Doc, a ods output can be got by :

proc freq data=sashelp.class;

tables height;

*ods output onewayfreqs=h;*

run;

Question: how to generate multiple ods tables in one clause? just like(*NOTE: the following codes can't work*)

proc freq data=sashelp.class;

tables height weight;

*ods output height\onewayfreqs=h*

weight\onewayfreqs=w;

> run;

Thanks and regards,

John(Jiangtang) Huhttp://www.linkedin.com/in/jiangtanghu


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