Date: Sun, 20 Sep 2009 21:07:32 -0500
Reply-To: OR Stats <stats112@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: OR Stats <stats112@GMAIL.COM>
Subject: Re: PROC G3D reverse y-axis
In-Reply-To: <200909202058.n8KAoTka003170@malibu.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
art: that was right on. yes, i replaced the ' ' w. " ". and then it
worked. is it a SAS version thing?
proc g3d: i would still really like if we could have made the scatter
points (x,y) one color and size, but then the connector line to the
corresponding z a different color and size. it would be nice if the walls
of the cube could have been one solid color. but all in all, the graph
turned out reasonable and good. our list serve is much friendlier anyways
:) thank you!
On Sun, Sep 20, 2009 at 3:58 PM, Arthur Tabachneck <art297@netscape.net>wrote:
> Do you have quotes around the minus sign after prefix= ?
>
> Art
> --------
> On Sun, 20 Sep 2009 14:44:26 -0500, OR Stats <stats112@GMAIL.COM> wrote:
>
> >hello:
> >
> >I am trying to reverse the axis order for PROC G3D. I am using the SAS
> >Samples & Notes found at:
> >http://support.sas.com/kb/24/859.html
> >
> >*
> >
> >data* minus_r;
> >
> >set original;
> >
> >y=-*1**y;
> >*
> >
> >run*;
> >*
> >
> >proc* *format*;
> >
> >picture reverse
> >
> >low - < *0* = �*09.000*�
> >*
> >
> >0* < - high = �*09.000*� (prefix=�-�)
> >
> >/*0 =�09.00�*/;
> >*
> >
> >run*;
> >But it is not working. I get the error
> >
> >2361 0 < - high = �09.000� (prefix=�-�)
> >
> >ERROR 22-322: Expecting a quoted string.
> >
> >ERROR 200-322: The symbol is not recognized and will be ignored.
> >
> >
> >
> >*Also, does anyone know how to increase the font of the scatter plot? The
> >dots are really small.*
>
|