I have an independent variable "military expenditure" in a logit regression predicting the likelihood of a state participating in a specific military exercise. The distribution of mil. expenditure is strongly right-skewed, which is why I consider log-transforming it. However, when I compared this model:
logit depvar milexp v2 v3 v4
to
logit depvar log_milexp v2 v3 v4
and compared a variety of Pseudo-R² tests using the fitstat command as advised here, the results were suggesting me that the original, untransformed model has an overall better fit.
In addition, I believe that I can theoretically expect that a linear relationship is likely: An increase in milexp from a low value to a low value+1 should raise likelihood just as much as from a high value to a high value+1.
Based on the Pseudo-R²s and on my theoretical expectation, can I reasonably continue with the untransformed, highly skewed independent variable?