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!!!!!!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.