I have a df as
name | week | %
mike Week 1 .45
mike Week 2 0
mike Week 3 .40
mike Week 4 .15
cindy Week 1 .25
cindy Week 2 .25
cindy Week 3 .25
cindy Week 4 .25
sampled df where my actual df has many more names
I am trying to plot all of the values of each name per week,
my plotly code is below:
import plotly.graph_objects as go
names= df['name'].unique()
fig = go.Figure(data=[
go.Bar(name='Week 1', x=names, y=[.15, .29, .19, .07]),
go.Bar(name='Week 2', x=names, y=[.24, .15, .15, .15]),
go.Bar(name='Week 3', x=names, y=[.20, .19, .17, .11]),
go.Bar(name='Week 4', x=names, y=[.41, .37, .49, .67]),
])
# Change the bar mode
fig.update_layout(barmode='stack', title = 'title',xaxis_title='Month',
yaxis=dict(
tickformat="%",
))
fig.show()
But I do not want to manually type out in y each of the values for week 1 then week 2 then week 3 and so on. How can I create a reference where y for each week in the plotting code will refer to all the values in week 1 so I dont have to type out? Thanks
plotly.express
, which takes a tidy (long) dataframe, by column name.plotly.graph_objects
requires aplotly.graph_obj
, to construct each level of the stacked bar plotdf.groupby
object can be unpacked into the necessary form, forgo.Figure