I've run an OLS regression using a natural log-transformed dependent variable; no predictor variables were transformed. However, I need to be able to express predicted values for individual cases in terms of the original scale of measurement. Can back-transforming the model's predicted values (as given by the predict xb command) be achieved by simple exponentiation of the predicted values? That is, can my desired back-transformation of predicted values be realized as follows:
Some sources (such as this) seem to suggest that this approach is correct, while others (such as this) seem to indicate that things are more complicated.
Code:
gen xb_original_scale=2.718281828459^xb
Some sources (such as this) seem to suggest that this approach is correct, while others (such as this) seem to indicate that things are more complicated.
Comment