I am running a series of Generalized Additive Models (GAMs) and the response variable and the predictors are highly skewed. Because of this, I square-root transformed the response, and transformed the other predictors as needed. One of the predictors also needed to be rescaled because its values occupied a scale that was too different from the other predictors (ran into convergence issues). In my linear model, the relationship looked something like this:

y0.5 = B0 + B1(x10.25) + B2(x20.25) + B3(log(x3)) + B4(scaled(x4)). My question is this: when I plot my results (i.e. x vs. y), is it better to plot the transformed data or the untransformed data? Untransformed data would be more intuitive for readers looking at the plots, but they wouldn't directly represent our statistical results since we ran GAMs with transformed data. I'm curious about this because the shapes of the GAM curves change depending on whether the data are transformed or not and my primary interest is in the shape of the curve. Does anyone have thoughts about this?

Similar questions and discussions