I have a highly skewed outcome variable TnI, which I have transformed using log2. I have used the excellent rms package to plot the OLS predictions. Is it possible to exponentiate log2(TnI) to get the plots of predictors vs TnI instead of log2(TnI)? Many thanks, Annemarie
dd <- datadist(df); options(datadist="dd")
m1 <- ols(log2(tni) ~ age + ischaemia, data=df, x=TRUE, y=TRUE)
plot(Predict(m1)