用 Python 创建信息图
我想用 python 创建一个简单的信息图。 Matplotlib 似乎有很多功能,但没有什么可以覆盖我的简单热图网格示例。
该信息图是一个简单的 5 x 5 网格,内部数字范围为 0 到 1。网格方块将被着色为 0=白色 1=蓝色 0.5(浅蓝色)。
可能可以使用 Matplotlib,但我找不到或无法结合任何可以深入了解生成此内容的示例。
任何见解、示例代码或库方向都会真正有
帮助 马特
I want to create a simple infographic in python. Matplotlib seems to have a lot of features but nothing that covers off my simple heatmap grid example.
The infographic is a simple 5 x 5 grid with numbers inside ranging from 0 to 1. The grid squares would then be coloured in 0=white 1=blue 0.5 being a pale blue.
Matplotlib could probably be used but I couldn't find or combine any examples that offered insight into generating this.
Any insight, example code or library direction would really help
Regards
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这取决于您拥有图表后需要对图表执行什么操作, Matplotlib 允许您以交互方式在屏幕上显示图形,将其保存为矢量、pdf 或位图格式等。
如果您选择此框架,
imshow
将满足您的需要,这里有一个示例:有关颜色图的更多详细信息检查此链接,这里是 imshow 链接 - 或者简单地使用
help(colors.LinearSegmentedColormap)
和help(imshow).
替代文本 http://img522.imageshack.us/img522/6230/bluep.png< /a>
(请注意,这是使用标准选项的结果,您可以添加网格、更改过滤等)。
编辑
为了简单起见:
It depends what you need to do with the graph once you have it, Matplotlib allows you to interactively show the graph on the screen, save it in either vector, pdf or bitmap format, and more.
If you opt for this framework,
imshow
will do what you need, here is an example:For further details on the colormap check this link, and here is the link for imshow - or simply use
help(colors.LinearSegmentedColormap)
andhelp(imshow)
.alt text http://img522.imageshack.us/img522/6230/bluep.png
(note that this is the result with the standard options, you can add a grid, change the filtering and so on).
Edit
To keep it simple:
PyCairo 是你的朋友。简单示例:
您可能会发现 本教程很有帮助。
PyCairo is your friend. Simple example:
You might find this tutorial helpful.
一种可能性是从 python 生成 SVG。您可以在 Firefox 或 Inkscape 中查看 SVG。
这是一个简单的示例:
替代文本 http://www.imagechicken.com/uploads /1257184721026098800.png
One possibility would be to generate SVG from python. You can view SVG in Firefox or Inkscape.
Here's a quick-and-dirty example:
alt text http://www.imagechicken.com/uploads/1257184721026098800.png