translogCalc | R Documentation |
Calculate the dependent variable of a translog function.
translogCalc( xNames, data, coef, shifterNames = NULL, dataLogged = FALSE )
xNames |
a vector of strings containing the names of the independent variables. |
data |
dataframe containing the data. |
coef |
vector containing all coefficients:
if there are |
shifterNames |
a vector of strings containing the names of the independent variables that should be included as shifters only (not in quadratic or interaction terms). |
dataLogged |
logical. Are the values in |
A vector containing the endogenous variable.
If the inputs are provided as logarithmic values
(argument dataLogged
is TRUE
),
the endogenous variable is returned as logarithm;
non-logarithmic values are returned otherwise.
Arne Henningsen
translogEst
and translogDeriv
.
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 ) translogCalc( c( "qLabor", "land", "qVarInput", "time" ), germanFarms, coef( estResult ) ) #equal to estResult$fitted
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.