This question here Standardized VS centered variables says you can only standardize or center variables after transforming them into log. Because my variables are in different units, my coefficients vary widely from > 10,000 to less than 0. I need to use the scale
function on R, but because some of my data is negative, it's impossible to take log of some of the variables. Can I standardize the values without log transformation first or is there any other way to standardize the units?
Asked
Active
Viewed 49 times
0

user10831611
- 75
- 2
- 5
-
1It doesn't say that at all. Rather, if it makes sense you may transform variables before standardizing. You're talking about coefficients in your question, which have nothing to do with standardizing the data. – Nick Cox Feb 01 '19 at 13:30
-
2Being negative isn't a barrier to transformation, as cube root, asinh and sign(x) log(1 + |x|) are among several possibilities. – Nick Cox Feb 01 '19 at 13:52
-
1Also, note that you can also transform only part of the variables, as a common solution to the German Credit problem (https://www.kaggle.com/uciml/german-credit) suggests. a/w transformation isn't necessary for standartization. – Spätzle Feb 01 '19 at 14:28