大 matplotlib 像素图最佳方法
我有一个大型 2D 数据集,我想将每个 X,Y 对关联一个颜色并使用 matplotlib 绘制它。我说的是1000000点。我想知道就性能(速度)而言最好的方法是什么,您是否可以举一些例子
I have a large 2D dataset where I want to associate to each X,Y pair a color and plot it with matplotlib. I am talking about 1000000 points. I wonder what is the best approach in terms of performance (speed) and if you could point to some example
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在处理常规网格,只需将其视为图像:
如果您随机订购x,y,z 三元组组成了一个规则的网格,那么你需要对它们进行网格化。
本质上,你可能有这样的东西:
If you're dealing with a regular grid, just treat it as an image:
If you have randomly ordered x,y,z triplets that make up a regular grid, then you'll need to grid them.
Essentially, you might have something like this: