Plotly: Grouped Bar Chart with multiple axes(Plotly:具有多个轴的分组条形图)
问题描述
当我在 Layout
中设置 barmode='group'
而 trace2 = Bar(...,yaxis='y2')
时,这会导致条形图被堆叠或覆盖,而不是对它们进行分组.如何在有多个轴的情况下对条形进行分组?
我浏览了这些但无济于事:
When I set
barmode='group'
inLayout
whiletrace2 = Bar(...,yaxis='y2')
, this leads bars to be stacked or overlayed instead of grouping them. How can I group the bars while having multiple axes?I went over these but no avail:
- With single Y axis grouped bar chart is shown here.
- Multiple axes is also explained here and reference for y-axis is available here
解决方案I hope the code below, based on zoo example, will be self-explanatory, however you have to set
yaxis
andoffsetgroup
parameters ingo.Bar()
object, and alsoyaxis2
parameter inlayout
parameter ofgo.Figure()
object properly. The code is following:import plotly.graph_objects as go animals=['giraffes', 'orangutans', 'monkeys'] fig = go.Figure( data=[ go.Bar(name='SF Zoo', x=animals, y=[200, 140, 210], yaxis='y', offsetgroup=1), go.Bar(name='LA Zoo', x=animals, y=[12, 18, 29], yaxis='y2', offsetgroup=2) ], layout={ 'yaxis': {'title': 'SF Zoo axis'}, 'yaxis2': {'title': 'LA Zoo axis', 'overlaying': 'y', 'side': 'right'} } ) # Change the bar mode fig.update_layout(barmode='group') fig.show()
The result looks like this:
这篇关于Plotly:具有多个轴的分组条形图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Plotly:具有多个轴的分组条形图


基础教程推荐
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 包装空间模型 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01