a coluna "original_language" ja foi identificada antes e consegui criar o data frame com ou sem index. Mas ao criar o barplot continuo recebendo o erro que o "original_language" nao foi identificado. Sera que alguem poderia me ajudar por favor?
sns.barplot(x= "original_language", y= "total", data = contagem_de_linguas)
ValueError Traceback (most recent call last) in <cell line: 1>() ----> 1 sns.barplot(x= "original_language", y= "total", data = contagem_de_linguas)
2 frames /usr/local/lib/python3.9/dist-packages/seaborn/categorical.py in establish_variables(self, x, y, hue, data, orient, order, hue_order, units) 539 if isinstance(var, str): 540 err = f"Could not interpret input '{var}'" --> 541 raise ValueError(err) 542 543 # Figure out the plotting orientation
ValueError: Could not interpret input 'original_language'