The simplest way to use PROC HPSEVERITY is to fit all the predefined distributions to a set of values and let the procedure identify the best fitting distribution.
Consider a lognormal distribution, whose probability density function (PDF) f and cumulative distribution function (CDF) F are as follows, respectively, where denotes the CDF of the standard normal distribution:
The following DATA step statements simulate a sample from a lognormal distribution with population parameters and , and store the sample in the variable Y
of a data set Work.Test_sev1
:
/*------------- Simple Lognormal Example -------------*/ data test_sev1(keep=y label='Simple Lognormal Sample'); call streaminit(45678); label y='Response Variable'; Mu = 1.5; Sigma = 0.25; do n = 1 to 100; y = exp(Mu) * rand('LOGNORMAL')**Sigma; output; end; run;
The following statements fit all the predefined distribution models to the values of Y
and identify the best distribution according to the corrected Akaike’s information criterion (AICC):
proc hpseverity data=test_sev1 crit=aicc; loss y; dist _predefined_; run;
The PROC HPSEVERITY statement specifies the input data set along with the model selection criterion, the LOSS statement specifies the variable to be modeled, and the DIST statement with the _PREDEFINED_ keyword specifies that all the predefined distribution models be fitted.
Some of the default output displayed by this step is shown in Figure 23.1 through Figure 23.3. First, information about the input data set is displayed followed by the "Model Selection" table, as shown in Figure 23.1. The model selection table displays the convergence status, the value of the selection criterion, and the selection status for each of the candidate models. The Converged column indicates whether the estimation process for a given distribution model has converged, might have converged, or failed. The Selected column indicates whether a given distribution has the best fit for the data according to the selection criterion. For this example, the lognormal distribution model is selected, because it has the lowest value for the selection criterion.
Figure 23.1: Data Set Information and Model Selection Table
Next, the estimation information for each of the candidate models is displayed. The information for the lognormal model, which is the best fitting model, is shown in Figure 23.2. The first table displays a summary of the distribution. The second table displays the convergence status. This is followed by a summary of the optimization process which indicates the technique used, the number of iterations, the number of times the objective function was evaluated, and the log likelihood attained at the end of the optimization. Since the model with lognormal distribution has converged, PROC HPSEVERITY displays its statistics of fit and parameter estimates. The estimates of Mu=1.49605 and Sigma=0.26243 are quite close to the population parameters of Mu=1.5 and Sigma=0.25 from which the sample was generated. The p-value for each estimate indicates the rejection of the null hypothesis that the estimate is 0, implying that both the estimates are significantly different from 0.
Figure 23.2: Estimation Details for the Lognormal Model
The parameter estimates of the Burr distribution are shown in Figure 23.3. These estimates are used in the next example.
Figure 23.3: Parameter Estimates for the Burr Model