BookmarkSubscribeRSS Feed
zdblizar
Fluorite | Level 6

Hello!

 

I'd like to add a line to the chart produced from the code below. I want it to the serve the purpose of highlighting the difference between the two bars (in terms of the height of each bar). Does anyone know what additions I need to incorporate in the code below?

 

title height=20pt "Forecast Error by Method";

title2 height=17pt "Overall SBU Level for Year &Year";

proc sgplot data=Append_Table2_Year;

styleattrs datacolors=(red blue);

vbar Method / Response=Avg_Error_by_Method stat=mean datalabel datalabelattrs=(size=15pt) group=Method;

xaxis display=(nolabel)

labelattrs=(size=15)

valueattrs=(size=13);

yaxis labelattrs=(size=15) max=15;

keylegend / titleattrs=(size=12) valueattrs=(size=12) location=outside;

run;

 

Thanks!

-Z

1 REPLY 1
DanH_sas
SAS Super FREQ

The simplest way is to add a VLINE using the same variables as the VBAR:

 

title height=20pt "Forecast Error by Method";
title2 height=17pt "Overall SBU Level for Year &Year";
proc sgplot data=Append_Table2_Year;
styleattrs datacolors=(red blue);
vbar Method / Response=Avg_Error_by_Method stat=mean datalabel datalabelattrs=(size=15pt) group=Method;
vline Method / Response=Avg_Error_by_Method stat=mean group=Method;
xaxis display=(nolabel)
labelattrs=(size=15)
valueattrs=(size=13);
yaxis labelattrs=(size=15) max=15;
keylegend / titleattrs=(size=12) valueattrs=(size=12) location=outside;
run;

Hope this helps!

Dan

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 2690 views
  • 1 like
  • 2 in conversation