使用 python 绘制复合图表

发布于 2024-11-01 20:59:52 字数 72 浏览 1 评论 0 原文

我想使用 python 从我的数据库生成复合图表(例如:条形图+折线图)。

我该怎么做?

提前致谢

I want to generate compound charts (e.g: Bar+line) from my database using python.

How can i do this ?

Thanks in Advance

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

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

发布评论

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

评论(4

第七度阳光i 2024-11-08 20:59:52

您可能需要查找 Matplotlib

You might want to look up Matplotlib.

寄人书 2024-11-08 20:59:52

使用 matplotlib 使用 plotbar 方法可以非常简单地做到这一点:

http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.plot

http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.bar

matplotlib 库通常是一个开始工作代码示例的好地方:

http://matplotlib.sourceforge.net/gallery.html< /a>

This is extremely simple to do using matplotlib using the plot and bar methods:

http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.plot

http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.bar

The matplotlib gallery is usually a good place to start for examples of working code:

http://matplotlib.sourceforge.net/gallery.html

半岛未凉 2024-11-08 20:59:52

使用 pygooglechart 很容易做到 -

您基本上可以按照软件附带的条形图示例进行操作,然后使用 add_data_line 方法在条形图顶部制作线条

Pretty easy to do with pygooglechart -

You can basically follow the bar chart examples that ship with the software and then use the add_data_line method to make the lines on top of the bar chart

天涯沦落人 2024-11-08 20:59:52

如果您要渲染到网络浏览器,您还可以考虑使用 Flot 的 jQuery 和 python-flot-utils。如果你想要静态图像,其他两个答案是正确的。 Matplotlib 非常出色。

If you are rendering to a web browser, you might also consider jQuery and Flot using python-flot-utils. If you want static images, the other two answers are correct. Matplotlib is excellent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文