|
|
proc gplot & ods pdf
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: proc gplot & ods pdf - comp.soft-sys.sasHi, 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... Histogram with gplot - comp.soft-sys.sasProc Gplot (notes and warnings) - comp.soft-sys.sas Log-Lin Plotting & Data Manipulation - comp.programming proc gplot & ods pdf - comp.soft-sys.sas... ods ... ods pdf ... ods pdf layout question - comp.soft-sys.sasproc gplot & ods pdf - comp.soft-sys.sas gplot question - comp.soft-sys.sas ods pdf layout question - comp.soft-sys.sas proc gplot & ods pdf - comp.soft-sys.sas gplot ... Character variables to order horizontal axis in GPLOT - comp.soft ...proc gplot & ods pdf - comp.soft-sys.sas Character variables to order horizontal axis in GPLOT - comp.soft ... proc gchart axis labels - comp.soft-sys.sas proc gplot & ods ... Proc Gplot (notes and warnings) - comp.soft-sys.sasproc gplot & ods pdf - comp.soft-sys.sas Proc Gplot (notes and warnings) - comp.soft-sys.sas Log-Lin Plotting & Data Manipulation - comp.programming proc gplot & ods pdf ... Proc sort & gplot - comp.soft-sys.sasproc gplot & ods pdf - comp.soft-sys.sas Proc sort & gplot - comp.soft-sys.sas ods pdf layout question - comp.soft-sys.sas proc sort: v9.1.3 executes much faster than v9.2 ... Problems with ODS PDF bookmarks in 9.2 - comp.soft-sys.sas ...proc gplot & ods pdf - comp.soft-sys.sas Problems with ODS PDF bookmarks in 9.2 - comp.soft-sys.sas ... Help with Proc NLIN - comp.soft ... Proc NLIN ... over the NLIN ... gplot question - comp.soft-sys.sasproc gplot & ods pdf - comp.soft-sys.sas gplot question - comp.soft-sys.sas ods pdf layout question - comp.soft-sys.sas proc gplot & ods pdf - comp.soft-sys.sas gplot ... Error in a ODS LAYOUT - comp.soft-sys.sasgplot question - comp.soft-sys.sas If you have received this electronic transmission in error, please reply ... ods pdf layout question - comp.soft-sys.sas proc gplot ... Proc Univariate: Histograms - comp.soft-sys.sasproc gplot & ods pdf - comp.soft-sys.sas Proc Univariate: Histograms - comp.soft-sys.sas Histogram with gplot - comp.soft-sys.sas Proc Univariate: Histograms - comp.soft ... 140-2007: Easy Graphs with PROC FORMAT, PROC GPLOT, and ODS1 Paper 140-2007 Easy Graphs with PROC FORMAT, PROC GPLOT, and ODS Apryl DeLancey, Warner Home Video, Burbank, CA ABSTRACT By means of straightforward commands in SAS ... SAS ODSformats, such as: html, pdf, rtf ... ods rtf file=“U:/rtffile.rtf”; proc gplot data = data1; ... Output Delivery System. • Also code of default styles ... 7/18/2012 10:33:45 AM
|
|
|
|
|
|
|
|
|