ningún problema en la gráfica anterior del histograma pero si se produce un error cuando pido el boxplot de seaborn (he repetido más de una vez desde el inicio) :
import seaborn as sns
sns.boxplot(promedios_por_pelicula)
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) 3801 try: -> 3802 return self.engine.getloc(casted_key) 3803 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) 3802 return self.engine.getloc(casted_key) 3803 except KeyError as err: -> 3804 raise KeyError(key) from err 3805 except TypeError: 3806 # If we have a listlike key, checkindexing_error will raise
KeyError: 0
Minutos más adelante (12 min 35 seg) encontré la solución: sns.boxplot(x = promedios_por_pelicula) o sns.boxplot(y = promedios_por_pelicula) o sea agregar un parámetro de orientación ("x" o "y"). Seguramente el error anterior se debe a una actualización de la librería seaborn.