Na execução do seguinte comando:
sns.boxplot(medias_por_filme) ocorreu o erro a baixo
KeyError Traceback (most recent call last) /usr/local/lib/python3.9/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance) 3628 try: -> 3629 return self.engine.getloc(casted_key) 3630 except KeyError as err:
8 frames pandas/libs/hashtableclass_helper.pxi in pandas.libs.hashtable.Int64HashTable.getitem()
pandas/libs/hashtableclass_helper.pxi in pandas.libs.hashtable.Int64HashTable.getitem()
KeyError: 0
The above exception was the direct cause of the following exception:
KeyError Traceback (most recent call last) /usr/local/lib/python3.9/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance) 3629 return self.engine.getloc(casted_key) 3630 except KeyError as err: -> 3631 raise KeyError(key) from err 3632 except TypeError: 3633 # If we have a listlike key, checkindexing_error will raise
KeyError: 0
####Ao executar da forma a seguir deu certo sns.boxplot(x=medias_por_filme)
A o que se refere o erro de chave que é citado? mesmo que eu tivesse executado "notas.groupby("filmeID")" para garantir que a chave estava correta.