将用户输入传递给图表标题

发布于 2025-01-11 14:31:57 字数 315 浏览 0 评论 0原文

我正在尝试在plotly dash中绘制一个简单的条形图

team=input()

fig=px.bar(df,x="win_count",y="venue",color="venue",title="Win count at each stadium for :team ")

fig.show()

如果用户输入是:巴西,则图表的标题现在是: :team 在每个体育场的获胜次数

我希望标题为: 巴西每个体育场的获胜次数

如何在标题中传递用户输入?

I am trying to plot a simple bar graph in plotly dash

team=input()

fig=px.bar(df,x="win_count",y="venue",color="venue",title="Win count at each stadium for :team ")

fig.show()

If the user input is: Brazil, the title of the graph now is:
Win count at each stadium for :team

I want the title to be:
Win count at each stadium for :Brazil

How can I pass the user input inside title?

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

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

发布评论

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

评论(1

已下线请稍等 2025-01-18 14:31:57

这有相当简单的解决方案,您可以轻松构建您的标题:

team=input()
title = "Win count at each stadium for :"+team
fig=px.bar(df,x="win_count",y="venue",color="venue",title=title)
fig.show()

这应该类似地工作:

team=input()
fig=px.bar(df,x="win_count",y="venue",color="venue",title="Win count at each stadium for :"+team)
fig.show()

This has rather simple solution, you can build your title easily:

team=input()
title = "Win count at each stadium for :"+team
fig=px.bar(df,x="win_count",y="venue",color="venue",title=title)
fig.show()

This should work similarly:

team=input()
fig=px.bar(df,x="win_count",y="venue",color="venue",title="Win count at each stadium for :"+team)
fig.show()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文