Graphs in SAS

  • Follow


All;

How do i get   graphs in separate pages  using proc gplot in  a single
file using ODS statements


Thanks
0
Reply sri10022 (7) 3/24/2011 1:48:15 AM

On Mar 23, 6:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
> All;
>
> How do i get =A0 graphs in separate pages =A0using proc gplot in =A0a sin=
gle
> file using ODS statements
>
> Thanks

ods xxx....

proc gplot data=3Dxxx;
By byvar;
plot y*x;
run;

ods xxx close;

0
Reply Ya 3/24/2011 2:46:21 AM


On Mar 23, 9:46=A0pm, Ya <huang8...@gmail.com> wrote:
> On Mar 23, 6:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
>
> > All;
>
> > How do i get =A0 graphs in separate pages =A0using proc gplot in =A0a s=
ingle
> > file using ODS statements
>
> > Thanks
>
> ods xxx....
>
> proc gplot data=3Dxxx;
> By byvar;
> plot y*x;
> run;
>
> ods xxx close;

i am really sorry .. i dint get the solution .. what i am trying to do
is run 3 proc gplots  and i need the output from these gplots in 3
separate page but in a single rtf file

Thanks
0
Reply sri 3/24/2011 4:48:52 AM

On Mar 23, 9:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
> On Mar 23, 9:46=A0pm, Ya <huang8...@gmail.com> wrote:
>
>
>
>
>
> > On Mar 23, 6:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
>
> > > All;
>
> > > How do i get =A0 graphs in separate pages =A0using proc gplot in =A0a=
 single
> > > file using ODS statements
>
> > > Thanks
>
> > ods xxx....
>
> > proc gplot data=3Dxxx;
> > By byvar;
> > plot y*x;
> > run;
>
> > ods xxx close;
>
> i am really sorry .. i dint get the solution .. what i am trying to do
> is run 3 proc gplots =A0and i need the output from these gplots in 3
> separate page but in a single rtf file
>
> Thanks

What have you tried?

I assumed that was the default output when you ran multiple procedures
inside one ods rtf statement.

Otherwise try the startpage option, not sure the setting is yes.

ods rtf file=3D'c:\temp' startpage=3Dyes;

proc gplot

proc gplot

proc gplot

ods rtf close;
0
Reply Reeza 3/24/2011 5:58:33 AM

On Mar 24, 12:58=A0am, Reeza <fkhurs...@hotmail.com> wrote:
> On Mar 23, 9:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
>
>
>
>
>
> > On Mar 23, 9:46=A0pm, Ya <huang8...@gmail.com> wrote:
>
> > > On Mar 23, 6:48=A0pm, sri 10022 <sri10...@gmail.com> wrote:
>
> > > > All;
>
> > > > How do i get =A0 graphs in separate pages =A0using proc gplot in =
=A0a single
> > > > file using ODS statements
>
> > > > Thanks
>
> > > ods xxx....
>
> > > proc gplot data=3Dxxx;
> > > By byvar;
> > > plot y*x;
> > > run;
>
> > > ods xxx close;
>
> > i am really sorry .. i dint get the solution .. what i am trying to do
> > is run 3 proc gplots =A0and i need the output from these gplots in 3
> > separate page but in a single rtf file
>
> > Thanks
>
> What have you tried?
>
> I assumed that was the default output when you ran multiple procedures
> inside one ods rtf statement.
>
> Otherwise try the startpage option, not sure the setting is yes.
>
> ods rtf file=3D'c:\temp' startpage=3Dyes;
>
> proc gplot
>
> proc gplot
>
> proc gplot
>
> ods rtf close;- Hide quoted text -
>
> - Show quoted text -

I played around these and it worked thanks
0
Reply sri 3/25/2011 4:22:02 PM

4 Replies
275 Views

(page loaded in 0.101 seconds)

Similiar Articles:













7/24/2012 7:57:03 AM


Reply: