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!