Hi,
I'm trying to output a pdf with plots from sgpanel with a title on the first page. However, when I try to add a title, it ends up on the last page. I would like the title to appear on the first page. I know I can use ODS TEXT, but I would like the title to have multiple lines.
Here is my code.
GOPTIONS DEVICE=PNG;
ods pdf file = '/FILEPATH/PLOT.pdf';
title 'My Plot';
title2 'My subtitle';
title3 'My second subtitle';
proc sgpanel data = HAVE;
panelby group_variable;
scatter x = x_variable y = y_variable;
run;
title; title2; title3;
ods pdf close;
Thanks,
Bill