Hello,
I am creating a panel graph in SAS with 3 columns. The vertical axis is fine. I want to change the range of the horizontal scale for each of the panels from the SAS default to the following:
first panel: range of 0 to 20
second panel: 60 to 98
third panel: 0 to 18
If possible, how do I insert this into my code:
PROC SGPANEL DATA=domestic.graphics;
PANELBY Service /novarname layout=panel columns=3 HEADERATTRS=(Color=red Family='Arial Narrow/Bold' Size=12 Weight=Bold) ;
hbar naics / response= mkt_usage datalabel datalabelfitpolicy=none nooutline ;
colaxis label=' ';
rowaxis display=(nolabel) colorbands=odd colorbandattrs=(transparency=0.5) labelattrs=(family='Arial Narrow') valueattrs=(size=7pt);
RUN;
Thanks
I think to have those very specific axis values will require using proc template and sgrender.
However, you can use the uniscale=rows and that will allow you to have different scales on the column (x) axis.
Try another two options.But still can't define the Y axis.
Suggest post it at ODS Graphic forum.
PROC SGPANEL DATA=domestic.graphics;
PANELBY Service /novarname
layout=panel columns=3
HEADERATTRS=(Color=red Family='Arial Narrow/Bold' Size=12 Weight=Bold)
proportional uniscale=row/column
;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.