You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the feedback @junsulee75 . You're welcome to submit a PR to propose that change yourself, otherwise I'll try to get that corrected later today or tomorrow.
When running this notebook on my python 3.7 environment, I encountered the following error
---> 14 wine = pandas.read_sql(sql,hdbi) .. NameError: name 'pandas' is not defined
Changing the relevant lines like below, it worked fine.
#wine = pandas.read_sql(sql,hdbi) wine = pd.read_sql(sql,hdbi)
I guess that is because we declared in the start of code
import pandas as pd
Posting this just in case we need to change it.
The text was updated successfully, but these errors were encountered: