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 (May 2010, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 14 May 2010 17:17:46 -0400
Reply-To:     Ya Huang <ya.huang@AMYLIN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Ya Huang <ya.huang@AMYLIN.COM>
Subject:      Re: SGPlot Quest - seeking help
Comments: To: Sharif Uddin <SUddin@ITS.JNJ.COM>

You can modify the style:

ods path work.myTmp(update) sasuser.templat(read) sashelp.tmplmst(read);

proc template; define style mystyle; parent=styles.sasweb; replace GraphData1 from GraphComponent / markersymbol = "X"; replace GraphData2 from GraphComponent / markersymbol = "square"; end; run;

ods html file="c:\temp\junk.html" gpath="c:\temp" style=mystyle;

proc sgplot data=sashelp.class; scatter x=weight y=height / group=sex; run;

ods _all_ close;

Where data1 & data2 corresponding to the first and second level of group var.

On Fri, 14 May 2010 16:27:15 -0400, Uddin, Sharif [ATRMUS] <SUddin@ITS.JNJ.COM> wrote:

>Dear SGPlot users, > > > >I am creating line graphs for three treatment arms. > >I am using 'vline' statement 'response' with 'group' option instead of >series statement because I also want SE bar. > > > >Now the questions: > > > >1. How can I specify three line pattern, marker/symbol etc. for >three groups? > >2. Is there any way to offset the graph - like in gplot? > > > >It looks like the symbol statements do not work here in these procuders. > > > >Any idea? > > > >Thanks, > > > >Sharif > > > >


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