Skip to content

Instantly share code, notes, and snippets.

@tomron
Last active May 31, 2021 18:58
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tomron/8b2f5872a28101445a9205d9e735099d to your computer and use it in GitHub Desktop.
Back to back bar chart with Plotly
import numpy as np
import matplotlib.pyplot as plt
import plotly.graph_objects as go
women_pop = np.array([5., 30., 45., 22.])
men_pop = np.array( [5., 25., 50., 20.])
y = list(range(len(women_pop)))
fig = go.Figure(data=[
go.Bar(y=y, x=women_pop, orientation='h', name="women", base=0),
go.Bar(y=y, x=-men_pop, orientation='h', name="men", base=0)
])
fig.update_layout(
barmode='stack',
title={'text': f"Men vs Women",
'x':0.5,
'xanchor': 'center'
})
fig.update_yaxes(
ticktext=['aa', 'bb', 'cc', 'dd'],
tickvals=y
)
fig.show()
@tomron
Copy link
Author

tomron commented Nov 11, 2020

This is the result -

newplot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment