Description
Hey @reiinakano,
first, your work was a great addition to the open-source ML community and is still used. 👍
Unfortunately, importing a freshly installed scikit-plot now fails with the following ImportErrror:
import scikitplot
print("Hello World")
import scikitplot
Traceback (most recent call last):
File "", line 1, in
File "D:\test-scikitplot\skplot\Lib\site-packages\scikitplot_init_.py", line 2, in
from . import metrics, cluster, decomposition, estimators
File "D:\test-scikitplot\skplot\Lib\site-packages\scikitplot\metrics.py", line 27, in
from scipy import interp
ImportError: cannot import name 'interp' from 'scipy' (D:\test-scikitplot\skplot\Lib\site-packages\scipy_init_.py)
So what fails is
scikit-plot/scikitplot/metrics.py
Line 27 in 2dd3e6a
The interp-function can be imported from numpy instead.
This bug is severe, because it affects all packages trying to import scikit-plot at the moment.
I would highly appreciate you looking into this! Thanks a lot and best wishes!