Hi,
I want to create a two-panel graph using proc sgpanel in SAS 9.4. The y-axis should be the same for the two panels, but I want both x-axis to have different values . Can that be done using SGPANEL?
Best regards,
Shaifali
Maybe you want this ?
proc sgscatter data=sashelp.class; compare x=(weight height) y=age; run;
Calling @Rick_SAS for proc template.
Maybe you want this ?
proc sgscatter data=sashelp.class; compare x=(weight height) y=age; run;
Calling @Rick_SAS for proc template.
On your PANELBY statement, set UNISCALE=ROW to allow the column axis to be independent. You might also want to set LAYOUT=COLUMNLATTICE to ensure that the panel is always built on one row, regardless of the number of classifiers.
Hope this helps!
Dan
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!
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.