Hello there, I'm using SCPANEL (SAS 9.4) to display animal interactions over a series of years. I use panelby year / layout=panel columns=2 rows=3; statement to get all the 6 yearly graphs, and a BY statement to get animal pairs. by species1 species2; Where species1 and species2 contain the common name of the species. I use title "Interactions between #byval(species1) and #byval(species2) "; The procedure gives the correct display, but across BY groups it keeps the same scaling on the graphs, whereas each set of panels (for a BY group) should be rescaled for the values (number of interactions) applicable to that species pair. As it is, the scaling for rare species pairs are still done to the axis limits applicable to the very common species which is 100;s of times more (5,000 as max value on Y axis instead of 20 or 30 as max value on Y axis). I can partialy releave the problem by using panelby year / layout=panel columns=2 rows=3 UNISCALE=COLUMN; but this leaves all the rows in a panel potentially scaled differently, which makes it difficult to visually compare years. ---------- Is there some setting to make the BY processing to essentially start completely fresh within the BY group (instead of in this case) using some information (Y axix scale) across the whole dataset. If this can't be done, I probably will need to code up a macro to do the BY processing. That is calling up PROC SGPANEL for each pair of species on the data set. Thanks for your thoughts. Ian SAS version info (from a macro we developed) NOTE: SAS version [sysvlong4] is 9.04.01M4P11092016, Site id [syssite] = 10007393 NOTE: Server Operating system [sysscp]:[sysscpl] is WIN:X64_SR12R2 NOTE: [_CLIENTAPP] Client application is SAS Studio
... View more