powered by
This function allows you to compute a Cobb-Douglas production/ utility function with two inputs/goods.
cobb_douglas_2(x, TFP = 1, alpha = 0.5, beta = 1 - alpha)
is a data frame with two columns.
is the constant of the model. Defaults to 1.
is the first input's elasticity. Defaults to a random number between 0 and 1, rounded to two digits.
is the second input's elasticity. Defaults to 1 - alpha.
Returns a list object with compued y and elasticities.
# NOT RUN { x <- c(3, 4, 5) y <- c(1, 4, 2) data <- data.frame(x = x, y = y) cobb_douglas_2(data) # }
Run the code above in your browser using DataLab