Matplotlib 绘制盒子
我有一组数据,其中每个值都有一个 (x, y) 坐标。不同的值可以具有相同的坐标。我想把它们画在一个矩形的盒子集合中。
例如,如果我有数据:
A -> (0, 0)
B -> (0, 1)
C -> (1, 2)
D -> (0, 1)
我想得到以下绘图:
0 1 2
+++++++++++++
0 + A + B + +
+ + D + +
+++++++++++++
1 + + + C +
+++++++++++++
2 + + + +
+++++++++++++
如何使用 Matplotlib 在 Python 中完成它?
谢谢!
I have a set of data, where each value has a (x, y) coordinate. Different values can have the same coordinate. And I want to draw them in a rectangular collection of boxes.
For example, if I have the data:
A -> (0, 0)
B -> (0, 1)
C -> (1, 2)
D -> (0, 1)
I want to get the following drawing:
0 1 2
+++++++++++++
0 + A + B + +
+ + D + +
+++++++++++++
1 + + + C +
+++++++++++++
2 + + + +
+++++++++++++
How can I do it in Python using Matplotlib?
THANKS!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是想,也许你真正想知道的只是这个:
Just thought, maybe what you actually wanted to know was just this:
也许使用 ReportLab 会更好。
示例
Perhaps it would be better to use the ReportLab.
Example