vcov.frontier {frontier} | R Documentation |
vcov method for class frontier
Description
Extract the covariance matrix of the maximum likelihood coefficients
of a stochastic frontier model returned by frontier
.
Usage
## S3 method for class 'frontier'
vcov( object, extraPar = FALSE, ... )
Arguments
object |
an object of class |
extraPar |
logical. If |
... |
currently unused. |
Details
The variance-covariance matrix of the estimated parameters is taken from the direction matrix that is used in the final iteration of the Davidon-Fletcher-Powell procedure that is used for maximising the (log) likelihood function.
If argument extraPar
is TRUE
,
the variances and covariances of the additional parameters
are obtained by the delta method.
Please note that the delta method might provide poor approximations
of the ‘true’ variances and covariances,
because parameter \sigma^2
is left-censored
and parameter \gamma
is both left-censored and right-censored
so that these parameters cannot be normally distributed.
Please note further
that it might not be appropriate to use standard statistical tests
(e.g. t-tests or other Wald tests)
that are based on the variances and covariances of \sigma^2
,
\gamma
, and the ‘additional parameters’,
because these parameters are censored and cannot follow normal distributions.
Value
vcov.frontier
returns the covariance matrix
of the maximum likelihood coefficients.
Author(s)
Arne Henningsen
See Also
coef.frontier
, coef.summary.frontier
,
summary.frontier
, and sfa
.
Examples
# example included in FRONTIER 4.1
data( front41Data )
sfaResult <- sfa( log( output ) ~ log( capital ) + log( labour ),
data = front41Data )
vcov( sfaResult )