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.

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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