BookmarkSubscribeRSS Feed
csetzkorn
Lapis Lazuli | Level 10

Hi all,

 

I have 2 columns in a dataset: X {1,2,3,4} and Y {1,2,3,4}. I would like to create a 2D panel of boxplots, potentially using code along those lines:

 

PROC SGPANEL  DATA=CARS1;
PANELBY MAKE;
  VBOX horsepower   / category = type;

   title 'Horsepower of cars by types';
RUN; 

Can I use PANELBY X Y? Ideally, the lower left corner should be coordinate X=1,X=1 and the top right corner should be X=4,Y=4. Thanks!

1 REPLY 1
DanH_sas
SAS Super FREQ

To change the starting location for the plots in the panel, use the START option on the PANELBY statement. In your case, use START=BOTTOMLEFT.

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
  • 728 views
  • 1 like
  • 2 in conversation