Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!uwm.edu!psuvax1!psuvm!IRLEARN!HARRINGT From: HARRINGT@IRLEARN.BITNET (Vivian Harrington) Newsgroups: bit.listserv.sas-l Subject: gplot problem Message-ID: Date: 2 Feb 90 13:03:02 GMT Sender: "SAS(r) Discussion" Reply-To: Vivian Harrington Lines: 19 Approved: NETNEWS@PSUVM Gateway A user here has a problem using gplot. The symbol statement does not provide a symbol for each point on the graph. If 'v=none' is used a dot is used for each point on the graph ? I have checked the manual but do not see what is wrong. Can anyone throw light on this problem ? Thanks in advance Vivian Harrington UCD Computing Services *************************************************** proc gplot data=b uniform; title f=xswiss 'Systolic BP'; axis1 label=(f=xswiss h=2 'Visit'); axis2 label=(a=90 r=0 f=xswiss h=2 'Mean Systolic BP'); symbol1 i=std1m v=square; symbol2 i=std1m v=hash; plot sp*visit=trt / haxis=axis1 vaxis=axis2; format trt test.; run; endsas; ************************************8