0
When I go to "plot" a bar chart it modifies my values on the Y-axis proportionally , but I want them to stay with the real values they have in the dataset, as I change this configuration?
dataset: https://www.kaggle.com/gregorut/videogamesales
dados_vendas_Activision = dados.query("Publisher=='Activision'").query("Year>=2000")
dados_vendas_Activision_2012 = dados_vendas_Activision.query("Year==2012")
plt.figure(figsize=(15,8))
sns.barplot(data=dados_vendas_Activision_2012,
x='Platform',
y='Global_Sales',
ci=None)
but wouldn’t the value of the columns follow that proportionality as well? for example, since the maximum value of the Y axis increased by 2.5 times the value of the PS3 "bar" to go to 5 as well?
– Luis Miguel