How to Solve NameError: name 'inv_boxcox' is not defined -- scipy

Solution: Import the 'inv_boxcox' module

To Solve the error, add the following line to the top of your code.

from scipy.special import inv_boxcox

 

For more information:
Python scipy inv_boxcox