LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2006, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 30 Mar 2006 08:15:35 -0800
Reply-To:     shiling99@YAHOO.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         shiling99@YAHOO.COM
Organization: http://groups.google.com
Subject:      Re: One simple question on gplot
Comments: To: sas-l@uga.edu
In-Reply-To:  <9C5FCBB0CFC9EC42AEB770E9CF8CC726045BD4A3@EXCHVS01.ad.sfwmd.gov>
Content-Type: text/plain; charset="iso-8859-1"

You may fool SAS graph a little. Here is an example. Hope it helps.

data t1; do x=-3 to 3 by 0.01; y=pdf('normal',x); output; end; run;

axis1 order=(-3.5 to 3.5) c=red; axis2 c=white; symbol1 i=j; proc gplot data=t1; plot y*x/haxis = axis1 vaxis= axis2 cframe=blue; run; quit;

"Xiao, Steven" wrote: > Hi, Guys,=20 > > =20 > > Anyway to take X-axis or Y-axis off in gplot? I can suppress X and Y at > the same time by "/noaxis" options, but how to take only one off but > keep another one? > > =20 > > Thanks > > =20 > > Steven > > =20


Back to: Top of message | Previous page | Main SAS-L page