Description Usage Arguments Value References See Also Examples
Predict the maximum producible output or technical efficiency based on an estimated Cobb-Douglas production frontier.
1 2 |
object |
An object of class |
newdata |
A data.frame in which to look for variables with which to predict the maximum producible output (if |
type |
The type of prediction: |
... |
Further arguments passed to the generic |
An object of class data.frame
.
C. W. Cobb and P. H. Douglas (1928). A Theory of Production. American Economic Review, 18: 139-165.
CobbDouglas.
1 2 3 4 5 6 7 8 | data(production)
m2 <- CobbDouglas("output", c("labour","capital"), data=production)
# prediction of the maximum producible output
predict(m2, newdata=data.frame(labour=20,capital=5))
# prediction of technical efficiency
predict(m2, newdata=data.frame(output=11.5,labour=20,capital=5), type="eff")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.