| Date: | Tue, 27 Aug 2002 13:59:47 -0400 |
| Reply-To: | Robert Abelson <rabelson@KAI-RESEARCH.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Robert Abelson <rabelson@KAI-RESEARCH.COM> |
| Subject: | Summary: Decimal places in axis tickmarks - GPLOT |
| Content-Type: | text/plain |
|---|
Thanks to Richard Read Allen, Nancy Brucken, and John Jones, who all had the
same advice - use a FORMAT statement. You guys are the best.
Bob Abelson
KAI
6001 Montrose Rd.
Suite 920
Rockville, MD 20852
T: 301-770-2730
F: 301-770-4183
rabelson@kai-research.com
-----Original Message-----
From: Robert Abelson [mailto:rabelson@KAI-RESEARCH.COM]
Sent: Tuesday, August 27, 2002 12:15 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Decimal places in axis tickmarks - GPLOT
Folks,
I produced some scatterplots, and was asked to smooth them using LOESS.
After I run PROC LOESS and run the same plots, my axis tickmarks acquire
five decimal places that were not there before.
proc gplot data=Joined_B;
by nihssbf notsorted;
symbol1 c=black f= v=circle;
symbol2 c=black f= v=triangle;
plot DepVar*startmin=treatcd Pred*startmin=treatcd / haxis=axis1
vaxis=axis2 vref=95;
axis1 order=(0 to 180 by 10);
axis2 order=(0 to 110 by 10);
run;
Both axes are labeled 0.00000, 10.00000, 20.00000, etc. I will RTFM if
anyone can point me in the right direction.
Thanks.
Bob Abelson
KAI
6001 Montrose Rd.
Suite 920
Rockville, MD 20852
T: 301-770-2730
F: 301-770-4183
rabelson@kai-research.com
|