So Iβm having problems getting the polar bar chart to display the bars overlayed on top of each other.
I have very similar code to the example in the documentation so like this,
import plotly.express as px
df = px.data.wind()
fig = px.bar_polar(df, r="frequency", theta="direction",
color="strength", template="plotly_dark",
color_discrete_sequence= px.colors.sequential.Plasma_r, barmode = 'overlay')
fig.show()
This does not display bars drawn on top of each other. It works fine with px. bar(),
df = px.data.wind()
fig = px.bar(df, x="frequency", y="direction",
color="strength", template="plotly_dark",
color_discrete_sequence= px.colors.sequential.Plasma_r, barmode = 'overlay')
fig.show()
Any help would be appreciated!