
Extract the coefficients from stochastic frontier models
returned by frontier
.
# S3 method for frontier
coef( object, which = "mle", extraPar = FALSE, … )
an object of class frontier
(returned by the function frontier
).
character string. Which coefficients should be returned? ('start' for starting values provided by the user, 'ols' for coefficients estimated by OLS, 'grid' for coefficients obtained by the grid search, or 'mle' for coefficients estimated by Maximum Likelihood).
logical. If TRUE
, additional parameters are returned:
sigmaSqU
= sigmaSq
* gamma
(with mu
, sigmaSqU
)),
sigmaSqV
= sigmaSq
* ( 1 - gamma
)
(with sigmaSqV
)),
sigma
= sigmaSq
^0.5,
sigmaU
= sigmaSqU
^0.5,
sigmaV
= sigmaSqV
^0.5,
lambdaSq
= sigmaSqU
/ sigmaSqV
,
and lambda
= sigmaU
/ sigmaV
.
Please note that sigmaSqU
and sigmaU
are not
the variance and standard error, respectively, of timeEffect
is FALSE
,
also the following additional parameters are returned:
varU
= the variance of sdU
= varU
^0.5,
and gammaVar
= varU
/ ( varU
+ sigmaSqV
).
Please note that the variance of
currently unused.
coef.frontier
returns a named vector of the coefficients.
coef.summary.frontier
and sfa
.
# NOT RUN {
# example included in FRONTIER 4.1
data( front41Data )
sfaResult <- sfa( log( output ) ~ log( capital ) + log( labour ),
data = front41Data )
coef( sfaResult, which = "ols" )
coef( sfaResult, which = "grid" )
coef( sfaResult )
# }
Run the code above in your browser using DataLab