Please help, I get the error below running jupyter notebook.
JavaScript
x
6
1
import numpy as np
2
import pandas as pd
3
from helper import boston_dataframe
4
5
np.set_printoptions(precision=3, suppress=True)
6
Error:
JavaScript
1
10
10
1
ImportError Traceback (most recent call last)
2
<ipython-input-3-a6117bd64450> in <module>
3
1 import numpy as np
4
2 import pandas as pd
5
----> 3 from helper import boston_dataframe
6
4
7
5
8
9
ImportError: cannot import name 'boston_dataframe' from 'helper' (/Users/irina/opt/anaconda3/lib/python3.8/site-packages/helper/__init__.py)
10
Advertisement
Answer
Since you are not giving the where you get the notebook, I have to guess that you get it from this course Supervised Learning: Regression provided IBM.
In the zip folder in week 1, it provides helper.py
.
What you need to do it is to change the directory to where this file is. Change IPython/Jupyter notebook working directory
Alternatively, you can load boston data from sklearn then load it to Pandas Dataframe
Advices for you: