I am multiplying two variables (Debt and CPI) to make a third (Adjusted Debt). Yeah, I know, nothing that is too hard to do.
My issue is that Stata turns the new variable into an one with an exponential form.
What do I need to do in my syntax to get the equation 73,087,418 * 1.282583 to equal 93,740,679.84 instead of 9.37e+07?
Currently, the typical syntax of
is not cutting it for me.
TIA
My issue is that Stata turns the new variable into an one with an exponential form.
What do I need to do in my syntax to get the equation 73,087,418 * 1.282583 to equal 93,740,679.84 instead of 9.37e+07?
Currently, the typical syntax of
gen adj_debt=debt*cpi
TIA
Comment