I started today a personal project following a tutorial from here https://nbviewer.jupyter.org/github/savvastj/nbashots/blob/master/tutorial/Tutorial.ipynb
But I already got a problem in the very beginning and I don't know why, it's something related to the modules I guess but I installed all
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
import nbashots as nba # this will throw a warning if using matplotlib 1.5
curry_id = nba.get_player_id("Curry, Stephen")[0]
curry_id
I run this and got me this error
Traceback (most recent call last):
File "C:\Users\carlo\Downloads\ye.py", line 2, in <module>
import seaborn as sns
File "C:\Users\carlo\AppData\Local\Programs\Python\Python38\lib\site-packages\seaborn\__init__.py", line 5, in <module>
from .categorical import *
File "C:\Users\carlo\AppData\Local\Programs\Python\Python38\lib\site-packages\seaborn\categorical.py", line 7, in <module>
from pandas.core.series import remove_na
ImportError: cannot import name 'remove_na' from 'pandas.core.series' (C:\Users\carlo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\core\series.py)