xxxxxxxxxx
import plotly.express as px
fig = px.line(df_stack, x=df_stack.loc[store]['day'], y=df_stack.loc[store]['sale'], title=f"Store {store}")
fig.show()
xxxxxxxxxx
import plotly.graph_objects as go
fig = go.Figure(data=go.Bar(y=[2, 3, 1]))
fig.show()
xxxxxxxxxx
# Pick your poison : https://plotly.com/python/plotly-express/
# All graphs are outlined with examples in the documentation with plotly express and graph_objects
# Customize minuscule details : https://plotly.com/python/graph-objects/
# Copy-paste the codes and just change your dataset ;)