Hi,
Fortunately, today I have same problem, and bump into this post.
I want to share something that I have been working on all day, to you and all community members that maybe had same problem.
I think it’s still relevant to reply this thread, even this post created 4 years ago.
As far as I know, until now, you can not create this kind of bar chart with just adding some attributes.
But, I have a solution that you need more work with the data.
Suppose I have this animal population dataframe,
df = pd.DataFrame({'animals':['giraffes', 'orangutans', 'monkeys'],
'pop': [20, 14, 23]})
Yes you can ceate a bar chart with plotly express, and set the color="pop"
to show the colorbar.
fig = px.bar(new_df, x="animals", y="pop", color="pop")
and you will get this display.
BUT, if you customize the data by using break the value of pop into smaller to bigger value you will get the gradient color in bar charts. You can do this using numpy.linspace
, set the bigger retstep
you will get smoother output.
df = pd.DataFrame({'animals':['giraffes', 'orangutans', 'monkeys'],
'pop': [20, 14, 23]})
new_df = pd.DataFrame({'animals':[],'pop': []})
for idx, row in df.iterrows():
for pop in np.linspace(1,row["pop"],row["pop"]*4):
new_df.loc[len(new_df)] = [row["animals"], pop]
And also you need to remove bar chart border line to make the gradation smoother and set the hovermode='x unified'
.
fig = px.bar(new_df, x="animals", y="pop", color="pop")
fig.update_traces(marker_line_width=0)
fig.update_layout(hovermode="x unified")
Run and you will get this.
Here the complete code.
import pandas as pd
import plotly.express as px
import numpy as np
df = pd.DataFrame({'animals':['giraffes', 'orangutans', 'monkeys'],
'pop': [20, 14, 23]})
new_df = pd.DataFrame({'animals':[],'pop': []})
for idx, row in df.iterrows():
for pop in np.linspace(1,row["pop"],row["pop"]*4):
new_df.loc[len(new_df)] = [row["animals"], pop]
print(new_df.head())
fig = px.bar(new_df, x="animals", y="pop", color="pop")
fig.update_traces(marker_line_width=0)
fig.update_layout(hovermode="x unified")
fig.show()
I hope you all can solve your problem.
Regards.