|
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
|