Plotly Express:如何用多个轨迹标记一个条形图。

发布于 2025-02-01 10:29:15 字数 278 浏览 3 评论 0原文

此代码为我提供了所需的图表。但是如何添加两个COLS的总标签?

fig = px.bar(d,x = d ['axis'],y = ['col1','col2'],barmode ='group',text =)

我成功地做了一个痕迹。

fig = px.bar(d,x = d ['axis'],y ='col1',barmode ='group',text = d ['col1'])

This code gives me the desired chart. But how do i add the total labels for both cols ?

fig = px.bar(d, x=d['AXIS'], y=['col1','col2'], barmode='group',text=)

I succeeded to do it for one trace.

fig = px.bar(d, x=d['AXIS'], y='col1', barmode='group',text=d['col1'])

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御弟哥哥 2025-02-08 10:29:15

解决问题:

fig = px.bar(d, x=d['AXIS'], y=['col1','col2'],
barmode='group',text_auto=True)

Problem solved:

fig = px.bar(d, x=d['AXIS'], y=['col1','col2'],
barmode='group',text_auto=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文