Statistical procedures use ODS Graphics to create graphs as part of their output. ODS Graphics is described in detail in ChapterĀ 24, Statistical Graphics Using ODS.
Before you create graphs, ODS Graphics must be enabled (for example, by specifying the ODS GRAPHICS ON statement). For more information about enabling and disabling ODS Graphics, see the section Enabling and Disabling ODS Graphics in ChapterĀ 24, Statistical Graphics Using ODS.
The overall appearance of graphs is controlled by ODS styles. Styles and other aspects of using ODS Graphics are discussed in the section A Primer on ODS Statistical Graphics in ChapterĀ 24, Statistical Graphics Using ODS.
PROC PSMATCH assigns a name to each graph it creates. You can use these names to refer to the graphs when you use ODS. To request the graph, ODS Graphics must be enabled and you must specify the ASSESS option. In addition, except for the standardized mean differences plot (which is the default), you must use the PLOTS= option in the ASSESS statement to specify the plots, as indicated in Table 10.
Table 10: Graphs Produced by PROC PSMATCH
| ODS Graph Name | Plot Description | Statements | PLOTS= |
|---|---|---|---|
| BarChart | Binary variable bar chart | ASSESS | BARCHART |
| BoxPlot | Continuous variable box plot | ASSESS | BOXPLOT |
| CDFPlot | Continuous variable CDF plot | ASSESS | CDFPLOT |
| CloudPlot | Continuous variable cloud plot | ASSESS | CLOUDPLOT |
| StdDiffPlot | Standardized mean differences plot | ASSESS | STDDIFFPLOT |
| StrataBarChart | Strata binary variable bar chart | ASSESS, STRATA | BARCHART |
| StrataBoxPlot | Strata continuous variable box plot | ASSESS, STRATA | BOXPLOT |
| StrataCDFPlot | Strata continuous variable CDF plot | ASSESS, STRATA | CDFPLOT |
| StrataCloudPlot | Strata continuous variable cloud plot | ASSESS, STRATA | CLOUDPLOT |
| StrataStdDiffPlot | Standardized mean differences plot | ASSESS, STRATA | STDDIFFPLOT |
| within strata | |||
| WgtCloudPlot | Weight cloud plot | ASSESS, PSWEIGHT | WGTCLOUDPLOT |