I am working on a variable selection problem where there are a dependent Y and around 10 predictors X_1 to X_10. I would like to pick the three best predictors. The predictor list is already materially censored to match the domain I am working in and I have already reduced dimensionality with LASSO. Data is definitely not normal but the exact distributions are not static. The predictors are not all on the same scale, some are monetary values, others are %. The dependent Y is always monetary.
I would like to show a relative rank ordering of the shortlisted variables. I am not fitting a multiple linear regression but even if I did, the relativity of the coefficients would be misleading if I do not transform.
I am running a AIC-minimizing variable selection from regsubsets (package leaps) in R. AIC is different in each run - but this is expected.
My problem is that:
If I don't standardize, predictors X_1, X_3 and X_5 are selected.
If I standardise, predictors X_1, X_7, X_10 are selected.
If I normalise, predictors X_3, X_5, X_10 are selected.
What is the best approach?