Reverse Box-Cox transformation
SciPy has added an inverse Box-Cox transformation. https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.inv_boxcox.html scipy.special.inv_boxcox scipy.special.inv_boxcox(y, lmbda) = Compute the inverse of the Box-Cox transformation. Find x such that: y = (x**lmbda – 1) / lmbda if lmbda != 0 log(x) if lmbda == 0 Parameters: y : array_like Data to be transformed. lmbda : array_like Power parameter of the Box-Cox … Read more