good day all,
i am used graph for proc sgplot procedure.
i am getting the output but the what the problem was i dont want keylegend location in graph anywhere. its missing blank.
i follow these code.
PROC SGPLOT DATA=test;
XAXIS VALUES=(0 to 100 BY 10) ;
YAXIS VALUES=(0 to 100 BY 25);
SERIES X=x Y=y / LINEATTRS=(THICKNESS=2) NAME="series1";
SCATTER X=x Y=y1 / MARKERATTRS=(symbol=squarefilled COLOR=orange size=12);
keylegend "series1" RUN;
QUIT;
so how to remove the keylegend location in proc sgplot.
Drop the keylegend statement, and add option noautolegend. In the documentation:
SAS/GRAPH(R) 9.2: Statistical Graphics Procedures Guide, Second Edition
Drop the keylegend statement, and add option noautolegend. In the documentation:
SAS/GRAPH(R) 9.2: Statistical Graphics Procedures Guide, Second Edition
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.