I'm creating a plot but can't figure out how to remove the horizontal and vertical gridlines in this plot (marked by the red arrows). Any suggestions? Thanks.
Here's my code & pic.
/*Graphs and info of 2way Models*/
proc sgplot data=predpN_mm_bt;
title "Predicted vs Actual Graph of 2way Model";
scatter x=pred_btpN_mm y=pN;
lineparm x=0 y=0 slope=1 / legendlabel="1:1 line"; /** intercept, slope **/
yaxis grid values=(0.4 to 1.4 by 0.2) label="Measured pN (%)";
xaxis grid values=(0.4 to 1.4 by 0.2) label="Predicted pN Ground Reference (%)";
run;
Hello @Daisy2,
To remove all grid lines, just delete the keyword "grid" from the XAXIS and YAXIS statement (which requests grid lines).
To remove only selected grid lines, I would probably switch to reference lines.
Hello @Daisy2,
To remove all grid lines, just delete the keyword "grid" from the XAXIS and YAXIS statement (which requests grid lines).
To remove only selected grid lines, I would probably switch to reference lines.
/*Graphs and info of 2way Models*/
proc sgplot data=predpN_mm_bt;
title "Predicted vs Actual Graph of 2way Model";
scatter x=pred_btpN_mm y=pN;
lineparm x=0 y=0 slope=1 / legendlabel="1:1 line"; /** intercept, slope **/
yaxis values=(0.4 to 1.4 by 0.2) label="Measured pN (%)";
xaxis values=(0.4 to 1.4 by 0.2) label="Predicted pN Ground Reference (%)";
run;
Just remove the grids. That 's all!!!!!!
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.
Ready to level-up your skills? Choose your own adventure.