translogDeriv( xNames, data, coef, coefCov = NULL,
yName = NULL, quadHalf = TRUE, dataLogged = FALSE )
NULL
, the dependent variable is calculated
from the independent variables and the coefficients.data
already logged?translogDeriv
containing following objects:translogEst
, translogCalc
nad
translogHessian
data( germanFarms )
# output quantity:
germanFarms$qOutput <- germanFarms$vOutput / germanFarms$pOutput
# quantity of variable inputs
germanFarms$qVarInput <- germanFarms$vVarInput / germanFarms$pVarInput
# a time trend to account for technical progress:
germanFarms$time <- c(1:20)
# estimate a translog production function
estResult <- translogEst( "qOutput", c( "qLabor", "land", "qVarInput", "time" ),
germanFarms )
# compute the marginal products of the inputs (with "fitted" Output)
margProducts <- translogDeriv( c( "qLabor", "land", "qVarInput", "time" ),
germanFarms, coef( estResult ), vcov( estResult ) )
margProducts$deriv
# compute the marginal products of the inputs (with observed Output)
margProductsObs <- translogDeriv( c( "qLabor", "land", "qVarInput", "time" ),
germanFarms, coef( estResult ), vcov( estResult ), "qOutput" )
margProductsObs$deriv
Run the code above in your browser using DataLab