I am comparing median laboratory values and mortality. I have 10 different labs on about 400 patients. I have created a box and whisker plot for each lab individually and mortality - see simple example code below. I would like them to all be included in one panel such as with sgpanel but since they are separate variables, I haven't been able to figure it out. They would each require their own Y axis since they have different scales. I would also love help with labeling mortality (outcome, 0 = deceased, 1 = survived) on the x-axis. proc sgplot data=eb; title 'AST overall value by survival'; vbox AST / category=outcome; run;
... View more