Dear Stata user,
I have dollar amounts as my dependent variable. This variable has about 40% zeros and is positively skewed. I log transformed it by adding 1 (i.e. new_outcome=ln(1+old_outcome) ). I ran a two-stage `churdle` model and generated marginal effects as recommended in the Stata manual. My main predictor of interest is a dichotomous variable (it is either 0 or 1). Because my outcome is log-transformed I am a bit perplexed as to how to interpret the effect of my main variable of interest summarized below. Would it be correct to say that when the X_var is equal 1 the dollar amount in the outcome variable is 67% percent higher?
Any advice would be greatly appreciated. This seems like a rudimentary question but I have not been able to find a definitive answer.
I have dollar amounts as my dependent variable. This variable has about 40% zeros and is positively skewed. I log transformed it by adding 1 (i.e. new_outcome=ln(1+old_outcome) ). I ran a two-stage `churdle` model and generated marginal effects as recommended in the Stata manual. My main predictor of interest is a dichotomous variable (it is either 0 or 1). Because my outcome is log-transformed I am a bit perplexed as to how to interpret the effect of my main variable of interest summarized below. Would it be correct to say that when the X_var is equal 1 the dollar amount in the outcome variable is 67% percent higher?
Code:
margins, dydx(X_var) Delta-method dy/dx Std. Err. z P>z [95% Conf. Interval] X_var .6697905 .2090674 3.07 0.002 .2314362 1.045223
Comment