Hi,
Im making a dashboard and in 1 part i wanna make little change.
My bar plot format and graph same with this:
import plotly.express as px
df = px.data.tips()
fig = px.bar(df, x="sex", y="total_bill", color='time')
fig.show()
but as you see, every bar contains from summation of sum value. How can I see sum of total_bill s top of each bar?
Thanks in advance!!