Dear all,
I kindly seek for your advise.
I am trying to test for Monotonicity in a translog production function using Margin, expression ().
The Translog production function is: 𝑙𝑛𝑌 = 𝛽° + 𝛽1𝑙𝑛land + 𝛽2𝑙𝑛capitalseedling + 𝛽3𝑙𝑛labor + 𝛽4 0.5(𝑙𝑛land)^2 + 𝛽5 0.5(𝑙𝑛capitalseedling)^2 + 𝛽6 0.5(𝑙𝑛labor)^2 + 𝛽7𝑙𝑛land𝑙𝑛capitalseedling + 𝛽8𝑙𝑛land𝑙𝑛labor + 𝛽9𝑙𝑛capitalseedling𝑙𝑛labor.
Thanks to @Andrew Musau I learnt how to use margin, expression.
Below is the estimated margin of the first derivatives.
dReve_ln/dLand_ln.
margins, expression(Reve * ( _b[Land_ln]/Land + _b[ halfLand_lnsq] * (Land_ln/Land) + _b[ Land_lncapitalseedling_ln] * (capitalseedling_ln/Land) + _b[ Land_lnLrdays_Act_ln] * (Lrdays_Act/Land)))
Results obtained:
dReve_ln/dcapitalseedling_ln
margins, expression(Reve * (_b[capitalseedling_ln]/capitalseedling + _b[halfcapitalseedling_lnsq]* (capitalseedling_ln/capitalseedling) + _b[Land_lncapitalseedling_ln]* (Land_ln/capitalseedling) + _b[capitalseedling_lnLrdays_Act_ln] * (Lrdays_Act_ln/capitalseedling)))
Results obtained:
dReve_ln/d Lrdays_Act_ln
margins, expression(Reve * (_b[Lrdays_Act_ln]/Lrdays_Act + _b[halfLrdays_Act_lnsq] * (Lrdays_Act_ln/Lrdays_Act) + _b[ Land_lnLrdays_Act_ln] * (Land_ln/Lrdays_Act) + _b[ capitalseedling_lnLrdays_Act_ln] * (capitalseedling_ln/Lrdays_Act)))
Results obtained:
Main question is:
Based on the results above, does it mean that the production function does not qualify under the monotonicity condition?
Your advice is highly welcome
Thank you
I kindly seek for your advise.
I am trying to test for Monotonicity in a translog production function using Margin, expression ().
The Translog production function is: 𝑙𝑛𝑌 = 𝛽° + 𝛽1𝑙𝑛land + 𝛽2𝑙𝑛capitalseedling + 𝛽3𝑙𝑛labor + 𝛽4 0.5(𝑙𝑛land)^2 + 𝛽5 0.5(𝑙𝑛capitalseedling)^2 + 𝛽6 0.5(𝑙𝑛labor)^2 + 𝛽7𝑙𝑛land𝑙𝑛capitalseedling + 𝛽8𝑙𝑛land𝑙𝑛labor + 𝛽9𝑙𝑛capitalseedling𝑙𝑛labor.
Thanks to @Andrew Musau I learnt how to use margin, expression.
Below is the estimated margin of the first derivatives.
dReve_ln/dLand_ln.
margins, expression(Reve * ( _b[Land_ln]/Land + _b[ halfLand_lnsq] * (Land_ln/Land) + _b[ Land_lncapitalseedling_ln] * (capitalseedling_ln/Land) + _b[ Land_lnLrdays_Act_ln] * (Lrdays_Act/Land)))
Results obtained:
Margin | std.Err | z | p | |
_cons | 177469.7 | 37714.64 | 4.71 | 0.00 |
dReve_ln/dcapitalseedling_ln
margins, expression(Reve * (_b[capitalseedling_ln]/capitalseedling + _b[halfcapitalseedling_lnsq]* (capitalseedling_ln/capitalseedling) + _b[Land_lncapitalseedling_ln]* (Land_ln/capitalseedling) + _b[capitalseedling_lnLrdays_Act_ln] * (Lrdays_Act_ln/capitalseedling)))
Results obtained:
Margin | std.Err | z | p | |
_cons | 4.90001 | 1.689439 | 2.90 | 0.004 |
dReve_ln/d Lrdays_Act_ln
margins, expression(Reve * (_b[Lrdays_Act_ln]/Lrdays_Act + _b[halfLrdays_Act_lnsq] * (Lrdays_Act_ln/Lrdays_Act) + _b[ Land_lnLrdays_Act_ln] * (Land_ln/Lrdays_Act) + _b[ capitalseedling_lnLrdays_Act_ln] * (capitalseedling_ln/Lrdays_Act)))
Results obtained:
Margin | std.Err | z | p | |
_cons | -172.1462 | 171.2485 | -1.01 | 0.315 |
Main question is:
Based on the results above, does it mean that the production function does not qualify under the monotonicity condition?
Your advice is highly welcome
Thank you
Comment