将用户输入传递给图表标题
我正在尝试在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有相当简单的解决方案,您可以轻松构建您的标题:
这应该类似地工作:
This has rather simple solution, you can build your title easily:
This should work similarly: