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

Solution: Import the 'make_interp_spline' module

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

from scipy import make_interp_spline

 

For more information:
Python scipy make_interp_spline