Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
The NLP Procedure

Example 5.5: Approximate Standard Errors

The NLP procedure provides a variety of ways for estimating parameters in nonlinear statistical models and for obtaining approximate standard errors and covariance matrices for the estimators. These methods are illustrated by estimating the mean of a random sample from a normal distribution with mean \mu and standard deviation \sigma. The simplicity of the example makes it easy to compare the results of different methods in NLP with the usual estimator, the sample mean.

The following data is used:

   data x; input x @@; datalines;
   1 3 4 5 7
   ;

The standard error of the mean, computed with n-1 degrees of freedom, is 1. The usual maximum-likelihood approximation to the standard error of the mean, using a variance divisor of n rather than n-1, is 0.8944272.

The sample mean is a least-squares estimator, so it can be computed using an LSQ statement. Moreover, since this model is linear, the Hessian matrix and crossproduct Jacobian matrix are identical, and all three versions of the COV= option yield the same variance and standard error of the mean. Note that COV=j means that the crossproduct Jacobian is used. This is chosen because it requires the least computation.

   proc nlp data=x cov=j pstderr pshort;
      lsq resid;
      parms mean=0;
      resid=x-mean;
   run;

The results are the same as the usual estimates.

Output 5.5.1: Parameter Estimates

PROC NLP: Least Squares Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 1.000000 4.000000 0.016130 8.881784E-15


PROC NLP can also compute maximum-likelihood estimates of \mu and \sigma. In this case it is convenient to minimize the negative log likelihood. To get correct standard errors for maximum-likelihood estimators, the SIGSQ=1 option is required. The following program shows COV=1 but the output that follows has COV=2 and COV=3.

   proc nlp data=x cov=1 sigsq=1 pstderr phes pcov pshort;
      min nloglik;
      parms mean=0, sigma=1;
      bounds 1e-12 < sigma;
      nloglik=.5*((x-mean)/sigma)**2 + log(sigma);
   run;

The variance divisor is n instead of n-1, so the standard error of the mean is 0.8944272 instead of 1. The standard error of the mean is the same with all six types of covariance matrix, but the standard error of the standard deviation varies. The sampling distribution of the standard deviation depends on the higher moments of the population distribution, so different methods of estimation can produce markedly different estimates of the standard error of the standard deviation.

Output 5.5.2 shows the output when COV=1.

Output 5.5.2: Solution for COV=1

PROC NLP: Nonlinear Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 0.894427 4.472136 0.006566 1.331492E-10
2 sigma 2.000000 0.458258 4.364358 0.007260 -5.606415E-9

Hessian Matrix
  mean sigma
mean 1.2500000028 -1.33149E-10
sigma -1.33149E-10 2.500000014

Covariance Matrix 1: M = (NOBS/d)
inv(G) JJ(f) inv(G)
  mean sigma
mean 0.8 1.906775E-11
sigma 1.906775E-11 0.2099999991


Output 5.5.3 shows the output when COV=2.

Output 5.5.3: Solution for COV=2

PROC NLP: Nonlinear Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 0.894427 4.472136 0.006566 1.331492E-10
2 sigma 2.000000 0.632456 3.162278 0.025031 -5.606415E-9

Hessian Matrix
  mean sigma
mean 1.2500000028 -1.33149E-10
sigma -1.33149E-10 2.500000014

Covariance Matrix 2: H = (NOBS/d)
inv(G)
  mean sigma
mean 0.7999999982 4.260769E-11
sigma 4.260769E-11 0.3999999978


Output 5.5.4 shows the output when COV=3.

Output 5.5.4: Solution for COV=3

PROC NLP: Nonlinear Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 0.509136 7.856442 0.000537 1.338402E-10
2 sigma 2.000000 0.419936 4.762634 0.005048 -5.940302E-9

Hessian Matrix
  mean sigma
mean 1.2500000028 -1.33149E-10
sigma -1.33149E-10 2.500000014

Covariance Matrix 3: J = (1/d) inv(W)
  mean sigma
mean 0.2592197879 1.091093E-11
sigma 1.091093E-11 0.1763460041


Under normality, the maximum-likelihood estimators of \mu and \sigma are independent, as indicated by the diagonal Hessian matrix in the previous example. Hence, the maximum-likelihood estimate of \mu can be obtained by using any fixed value for \sigma, such as 1. However, if the fixed value of \sigmadiffers from the actual maximum-likelihood estimate (in this case 2), the model is misspecified and the standard errors obtained with COV=2 or COV=3 are incorrect. It is therefore necessary to use COV=1, that yields consistent estimates of the standard errors under a variety of forms of misspecification of the error distribution:

   proc nlp data=x cov=1 sigsq=1 pstderr pcov pshort;
      min sqresid;
      parms mean=0;
      sqresid=.5*(x-mean)**2;
   run;

This formulation produces the same standard error of the mean, 0.8944272 (see Output 5.5.5).

Output 5.5.5: Solution for FIXED \sigma and COV=1

PROC NLP: Nonlinear Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 0.894427 4.472136 0.006566 0

Covariance Matrix 1:
M = (NOBS/d) inv(G) JJ(f)
inv(G)
  mean
mean 0.8


The maximum-likelihood formulation with fixed \sigma is actually a least-squares problem. The objective function, parameter estimates, and Hessian matrix are the same as those in the first example in this section using the LSQ statement. However, the Jacobian matrix is different, each row being multiplied by twice the residual. To treat this formulation as a least-squares problem, the SIGSQ=1 option can be omitted. But since the Jacobian is not the same as in the formulation using the LSQ statement, the COV=1 | M and COV=3 | J options, that use the Jacobian, do not yield correct standard errors. The correct standard error is obtained with COV=2 | H, that uses only the Hessian matrix:

   proc nlp data=x cov=2 pstderr pcov pshort;
      min sqresid;
      parms mean=0;
      sqresid=.5*(x-mean)**2;
   run;

The results are the same as in the first example:

Output 5.5.6: Solution for Fixed \sigma and COV=2

PROC NLP: Nonlinear Minimization

Optimization Results
Parameter Estimates
N Parameter Estimate Approx
Std Err
t Value Approx
Pr > |t|
Gradient
Objective
Function
1 mean 4.000000 0.500000 8.000000 0.001324 0

Covariance Matrix 2:
H = (NOBS/d) inv(G)
  mean
mean 0.25


In summary, to obtain appropriate standard errors for least-squares estimates, you can use the LSQ statement with any of the COV= options, or you can use the MIN statement with COV=2. To obtain appropriate standard errors for maximum-likelihood estimates, you can use the MIN statement with the negative log likelihood or the MAX statement with the log likelihood, and in either case you can use any of the COV= options provided that you specify SIGSQ=1. You can also use a log-likelihood function with a misspecified scale parameter provided that you use SIGSQ=1 and COV=1. For nonlinear models, all of these methods yield approximations based on asymptotic theory, and should therefore be interpreted cautiously.

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.