proc gplot & ods pdf

  • Follow


Hi,
I want to print a pdf document with graphs. I do the gplot procedure
for some animals (100) and I will have 100 graphs (one for each
animal). I want to print a pdf documents with 4 or 6 graphs for page
(total page of pdf=25 or less). If I write this procedure I will have
one graph for page (total pages of pdf=100)... How can I improve it?
Thanks,
Mara

ods GRAPHICS on;
ods PDF ;
ods  gpath="C:\nlin";


proc GPLOT data=nlin.etamesi;
BY bull;
AXIS Length=50pct;
 plot freq*time/overlay
       haxis=18 to 289 by 12
       hminor=0;
run;
ODS pdf close;
0
Reply mara 11/10/2010 6:09:30 PM

Usage Note 23613: In ODS output, how can I present multiple graphs on
a page?
http://support.sas.com/kb/23/613.html

or you could try PROC GREPLAY

On Nov 10, 6:09=A0pm, mara <mara.batta...@gmail.com> wrote:
> Hi,
> I want to print a pdf document with graphs. I do the gplot procedure
> for some animals (100) and I will have 100 graphs (one for each
> animal). I want to print a pdf documents with 4 or 6 graphs for page
> (total page of pdf=3D25 or less). If I write this procedure I will have
> one graph for page (total pages of pdf=3D100)... How can I improve it?
> Thanks,
> Mara
>
> ods GRAPHICS on;
> ods PDF ;
> ods =A0gpath=3D"C:\nlin";
>
> proc GPLOT data=3Dnlin.etamesi;
> BY bull;
> AXIS Length=3D50pct;
> =A0plot freq*time/overlay
> =A0 =A0 =A0 =A0haxis=3D18 to 289 by 12
> =A0 =A0 =A0 =A0hminor=3D0;
> run;
> ODS pdf close;

0
Reply ajs2004 11/26/2010 10:52:55 AM


On Nov 26, 8:52=A0pm, "ajs2...@bigfoot.com" <ajs2...@bigfoot.com> wrote:
> Usage Note 23613: In ODS output, how can I present multiple graphs on
> a page?http://support.sas.com/kb/23/613.html
>
> or you could try PROC GREPLAY
>
> On Nov 10, 6:09=A0pm, mara <mara.batta...@gmail.com> wrote:
>
> > Hi,
> > I want to print a pdf document with graphs. I do the gplot procedure
> > for some animals (100) and I will have 100 graphs (one for each
> > animal). I want to print a pdf documents with 4 or 6 graphs for page
> > (total page of pdf=3D25 or less). If I write this procedure I will have
> > one graph for page (total pages of pdf=3D100)... How can I improve it?
> > Thanks,
> > Mara
>
> > ods GRAPHICS on;
> > ods PDF ;
> > ods =A0gpath=3D"C:\nlin";
>
> > proc GPLOT data=3Dnlin.etamesi;
> > BY bull;
> > AXIS Length=3D50pct;
> > =A0plot freq*time/overlay
> > =A0 =A0 =A0 =A0haxis=3D18 to 289 by 12
> > =A0 =A0 =A0 =A0hminor=3D0;
> > run;
> > ODS pdf close;

Consider using proc sgpanel instead.
R
0
Reply Richard 11/28/2010 11:53:47 PM

2 Replies
489 Views

(page loaded in 0.128 seconds)

Similiar Articles:













7/18/2012 10:33:45 AM


Reply: