Although PROC BGLIMM provides a number of convergence diagnostic tests and posterior summary statistics, it performs the calculations only for the default tests and statistics or only if you specify the necessary options. If you want to analyze the posterior draws of unmonitored parameters or functions of the parameters that are calculated in later DATA step calls, you can use the autocall macros that are listed in Table 15.
Table 15: Postprocessing Autocall Macros
| Macro | Description |
|---|---|
| %ESS | Effective sample sizes |
| %GEWEKE* | Geweke diagnostic |
| %HEIDEL* | Heidelberger-Welch diagnostic |
| %MCSE | Monte Carlo standard errors |
| %POSTACF | Autocorrelation |
| %POSTCOR | Correlation matrix |
| %POSTCOV | Covariance matrix |
| %POSTINT | Equal-tail and HPD intervals |
| %POSTSUM | Mean, standard deviation, and various quantiles |
| %RAFTERY | Raftery diagnostic |
| %SUMINT | Mean, standard deviation, and HPD interval |
| %TADPLOT | Trace plot, autocorrelation plot, and density plot |
| *The %GEWEKE and %HEIDEL macros use a different optimization routine than PROC BGLIMM uses. As a result, there might be numerical differences in some cases, especially when the sample size is small. | |
Table 16 lists options that are shared by all postprocessing autocall macros. For macro-specific options, see Table 17.
Table 16: Shared Options
| Option | Description |
|---|---|
| DATA=SAS-data-set | Names the input data set that contains posterior samples |
| OUT=SAS-data-set | Specifies a name for the output SAS data set to contain the results |
| PRINT=YES | NO | Displays the results (the default is YES) |
| VAR=variable-list | Specifies the variables on which to perform the calculation |
Suppose that the data set that contains posterior samples is called Post and the variables of interest are defined in the macro variable &PARMS. The following statement calls the %ESS macro and calculates the effective sample sizes for each variable:
%ESS(data=Post, var=Alpha Beta U_1-U_17)
By default, the ESS estimates are displayed. You can choose not to display the result and instead use the following statement to save the output to a data set:
%ESS(data=Post, var=&parms, print=NO, out=eout)
Some of the macros can take additional options, which are listed in Table 17.
Table 17: Macro-Specific Options
For example, the following statement calculates and displays autocorrelation at lags 1, 6, 11, 50, and 100. Note that the lags in the numeric-list must be separated by commas.
%POSTACF(data=Post, var=&parms, lags=%str(1 to 15 by 5, 50, 100))