BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
acuffza
Calcite | Level 5

I'm trying to create box plots with PROC SGPLOT, but I end up with way too much blank gray space at the bottom of the graphs (where the legend usually goes). Does anyone know how to fix this so that the "empty" space doesn't take up so much room and the graph itself can be larger? This is my code:

%MACRO boxplots (compound=);

DATA final2;

SET final;

label concentration="uM";

RUN;

proc sgplot data=final2 dattrmap=attrmap noautolegend;

title "&compound.";

vbox concentration / category=group group=group attrid=group;

where compound="&compound.";

xaxis label=" ";

run;

title " ";

%MEND boxplots;

data attrmap;

   input id $ value $7. @15 fillcolor $10. linecolor $8.;

   datalines;

group  RT       white      black

group  BR    LTGRAY     black

;

run;

proc template;

  define style myfont;

  parent=styles.default;

   style GraphFonts /

         'GraphDataFont' = ("Arial",28pt,bold)

         'GraphUnicodeFont' = ("Arial",28pt,bold)

         'GraphValueFont' = ("Arial",28pt,bold)

         'GraphLabelFont' = ("Arial",28pt,bold)

         'GraphFootnoteFont' = ("Arial",28pt,bold)

         'GraphTitleFont' = ("Arial",28pt,bold)

         'GraphAnnoFont' = ("Arial",28pt,bold);

end;

run;

ods graphics on;

ods rtf file="XXXXXXXXXXXXXXXXXXXX" style=myfont;

%boxplots (compound=2-Oxoisocaproate);

%boxplots (compound=3-Hydroxybutyrate);

%boxplots (compound=3-Hydroxyisovalerate);

ods rtf close;

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

You have x axis label=' '.  This leaves a blank space for the label.  To remove the xaxis label use XAXIS DISPLAY=(NOLABEL);.

View solution in original post

4 REPLIES 4
DanH_sas
SAS Super FREQ

Two questions:

1. What version of SAS are you running?

2. Since we do not have the data, can you attach a picture that demonstrates the issue?

Thanks!

Dan

acuffza
Calcite | Level 5

Sure! I'm running SAS 9.4. Here's one of the graphs:

Boxplot Example.png

Thank you!

Jay54
Meteorite | Level 14

You have x axis label=' '.  This leaves a blank space for the label.  To remove the xaxis label use XAXIS DISPLAY=(NOLABEL);.

acuffza
Calcite | Level 5

That worked! Thank you so much!

SAS INNOVATE 2024

innovate-wordmarks-white-horiz.png

SAS is headed back to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team.

Interested in speaking? Content from our attendees is one of the reasons that makes SAS Innovate such a special event!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 4 replies
  • 2771 views
  • 0 likes
  • 3 in conversation