The NLIN Procedure

Confidence Intervals

Parameter Confidence Intervals

By default, the parameter confidence intervals are computed using the Wald-based formula:

\[ \widehat{\beta }_ i \pm \mbox{stderr}_ i \times t(n-p, 1-\alpha /2) \]

where $\widehat{\beta }_ i$ is the ith parameter estimate, $\mr{stderr}_ i$ is its estimated standard error, $t(n-p, 1-\alpha /2)$ is a t statistic with $n - p$ degrees of freedom, n is the number of usable observations, and p is the number of parameters. You can specify the significance level $\alpha $ used in constructing these confidence limits with the ALPHA= option in the PROC NLIN statement; the default value is $\alpha =0.05$.

Because Wald-based confidence intervals are only asymptotically valid, you can use the BOOTSTRAP statement to request bootstrap-based confidence intervals. Furthermore, you can augment these confidence intervals with confidence curves for a more complete inference on confidence intervals. For more information, see the section Bootstrap Resampling and Estimation and Profiling Parameters and Assessing the Influence of Observations on Parameter Estimates.

Model Confidence Intervals

Model confidence intervals are output when an OUT= data set is specified and one or more of the keywords LCLM , UCLM , LCL , UCL , L95M= , U95M= , L95= , and U95= is specified. The expressions for these terms are as follows:

\begin{align*} \mbox{LCLM} & = f( \bbeta , \mb{z}_ i) - \sqrt {\mr{MSE} \times h_ i/w_ i} \times t(n - p, 1-\alpha /2) \\ \mbox{UCLM} & = f( \bbeta , \mb{z}_ i) + \sqrt {\mr{MSE} \times h_ i/w_ i} \times t(n - p, 1-\alpha /2) \\ \mbox{LCL } & = f( \bbeta , \mb{z}_ i) - \sqrt {\mr{MSE} (h_ i + 1/w_ i)} \times t(n - p, 1-\alpha /2) \\ \mbox{UCL } & = f( \bbeta , \mb{z}_ i) + \sqrt {\mr{MSE} (h_ i + 1/w_ i)} \times t(n - p, 1-\alpha /2) \\ \mbox{L95M} & = f( \bbeta , \mb{z}_ i) - \sqrt {\mr{MSE} \times h_ i/w_ i} \times t(n - p, 1-0.05/2) \\ \mbox{U95M} & = f( \bbeta , \mb{z}_ i) + \sqrt {\mr{MSE} \times h_ i/w_ i} \times t(n - p, 1-0.05/2) \\ \mbox{L95 } & = f( \bbeta , \mb{z}_ i) - \sqrt {\mr{MSE} (h_ i + 1/w_ i)} \times t(n - p, 1-0.05/2) \\ \mbox{U95 } & = f( \bbeta , \mb{z}_ i) + \sqrt {\mr{MSE} (h_ i + 1/w_ i)} \times t(n - p, 1-0.05/2) \\ \end{align*}

where $h_ i = w_ i \mb{x}_ i(\mb{X}^{\prime }\mb{WX})^{-1} \mb{x}_ i^{\prime }$ is the leverage, $\mb{X}=\partial {\mb{f}} / \partial \bbeta $, and $\mb{x}_ i$ is the ith row of $\mb{X}$. These results are derived for linear systems. The intervals are approximate for nonlinear models. The value $\alpha $ in the preceding formulas for LCLM , UCLM , LCL , and UCL can be set with the ALPHA= option in the PROC NLIN statement or with the ALPHA= option in the OUTPUT statement. If both ALPHA= options are specified, the option in the OUTPUT takes precedence.