BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
kritima
Obsidian | Level 7

Hi all,

I want to make a graph as attach file. 
I do coding as below ......

 

 

data one;
input group x y;
cards;
1 11 21
1 15 26
1 18 32
2 13 31
2 16 38
2 19 40
;

symbol1 value=square color=black interpol=join;

proc gplot data=one;
plot x*y / vref= 11 50
vaxis=(10 to 60 by 2) ;
run;

 


      the point is when i change from 'square' to 'squarefilled' , the display result is triangle.

 

     Would you please suggest me what am i doing wrong?

 

 

 


ScreenHunter_81 Sep. 08 23.01.jpg
1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

Your code is using GPLOT instead of SGPLOT. The SGPLOT equivalent for your program would be the following:

proc sgplot data=one;
series x=x y=y / markers markerattrs=(color=black symbol=squarefilled) lineattrs=(color=black); 
refline 11 50;
yaxis values=(10 to 60 by 2) ;
run;

View solution in original post

1 REPLY 1
DanH_sas
SAS Super FREQ

Your code is using GPLOT instead of SGPLOT. The SGPLOT equivalent for your program would be the following:

proc sgplot data=one;
series x=x y=y / markers markerattrs=(color=black symbol=squarefilled) lineattrs=(color=black); 
refline 11 50;
yaxis values=(10 to 60 by 2) ;
run;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1282 views
  • 0 likes
  • 2 in conversation