Date: Sun, 17 Feb 2008 11:37:53 -0600
Reply-To: Edgar I Sanchez <Suppression@MAIL.UTEXAS.EDU>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Edgar I Sanchez <Suppression@MAIL.UTEXAS.EDU>
Subject: Change Symbol Size in a GPLOT
Content-Type: text/plain; charset="us-ascii"
Greetings!
I am trying to figure out how to change the size of the symbol
used for a GPLOT. The code I am using is below (although for the answer I
don't think it's necessary). I have 9 functions in my GPLOT and am trying to
find the best way to differentiate the lines in my legend and in the plot. I
first used different line types but in the legend the line types looked so
similar you couldn't tell which was which. For that reason I figured I would
rely on different symbols. The problem is that when I use the symbols the
symbol itself is so small that you can't tell which is which in the graph.
So my question is how can I change the size of the symbol in the plot
itself. Along the same lines is there a way to change the width of the
legend such that the part which displays the symbols is a bit longer? Right
now that portion of the legen is cramped and it just looks line three
symbolsThanks!
filename icatk100 "C:\Documents and Settings\Suppression\My Documents\UT
Documents\PhD\Dissertation SAS Docs\CATs\DV\Results\Info
Plots\Catinfokey100.gif";
options validvarname=upcase;
goptions reset=all device=gif gsfname=icatk100 noborder ftext='Times/bo'
htext=3 gunit=pct;
symbol1 value=square c=black w=2 interpol=join;
symbol2 value=diamond c=black w=2 interpol=join;
symbol3 value=triangle c=black w=2 interpol=join;
symbol4 value=: c=black w=2 interpol=join;
symbol5 value=dot c=black w=2 interpol=join;
symbol6 value=circle c=black w=2 interpol=join;
symbol7 value=# c=black w=2 interpol=join;
symbol8 value=plus c=black w=2 interpol=join;
symbol9 value== c=black w=2 interpol=join;
axis1 order= 0 to 25 by 5 label=(angle=90 "Information") minor=none;
axis2 order= -4 to 4 by .5 label=("Theta") minor= (n=4);
legend1 label=none value=( j=left "Content 1 / 3 Catagories"
j=left "Content 1 / 4 Catagories"
j=left "Content 1 / 5 Catagories"
j=left "Content 2 / 3 Catagories"
j=left "Content 2 / 4 Catagories"
j=left "Content 2 / 5 Catagories"
j=left "Content 3 / 3 Catagories"
j=left "Content 3 / 4 Catagories"
j=left "Content 3 / 5 Catagories")
mode=protect position=(top inside right)
cborder=blue across=1;
title;
proc gplot data=infocat100;
plot (TESTINFO1-testinfo9)*THETA/ overlay noframe vaxis=axis1
haxis=axis2 legend=legend1;
run;quit;
-Edgar Sanchez