The syntax for the INSET statement is as follows:
INSET keyword-list </ options >;
You can use any number of INSET statements in the ANOM procedure. However, when ODS Graphics is enabled, at most two insets are displayed inside the plot area and at most two are displayed in the chart margins. Each INSET statement produces a separate inset and must follow one of the chart statements. The inset appears on every panel (page) produced by the last chart statement preceding it. The statistics are displayed in the order in which they are specified. The following statements produce an ANOM boxchart with two insets and an ANOM chart for means with one inset.
proc anom data=LabelDeviations; boxchart Deviation*Position; inset alpha mse dfe; inset ldl mean udl; xchart Deviation*Position; inset ngroups nmin nmax; run;
The statistics displayed in an inset are computed for a specific response variable using observations for the current BY group.
For example, in the following statements, there are two response variables (Weight
and Diameter
) and a BY variable (Location
). If there are three different locations (levels of Location
), then a total of six ANOM charts are produced. The statistics in each inset are computed for a particular variable and location.
The labels in the inset are the same for each ANOM chart.
proc anom data=Axles; by Location; xchart (Weight Diameter)*Batch; inset alpha mse dfe; run;
The components of the INSET statement are described as follows.