Solved – Why does Box-Cox transformation fail in following situation

data transformation

In the book, Linear Models with R by Julian Faraway, it says that if max(y)/min(y) is small, then Box Cox won't do anything because power transformations are well approximated by linear transformations over short intervals.
Why does it say that power transformation is approximated by linear transformation over short intervals? And if so, why when max(y)/min(y) is small, Box Cox fails?

Best Answer

(mostly copied from the comment by Nick Cox) The Box-Cox transform does not really fail: it is more that it is unnecessary, as there will be no need of transformation if max/min is small. Mostly, with max/min small all the observations are away from zero (relatively), so the power transform will be well approximated linearly over a short interval!

Related Question