问题标签 [celllist]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
391 浏览

python - 将图形拆分为正方形

我在散点图中绘制了 n 个点的图。我想将绘图拆分为 x 长度的正方形网格,然后从我刚刚制作的网格中为图表中的每个点分配一个特定的正方形。我将如何在 Python 中执行此操作?

该图的代码是这样的:

图 = pos_table.plot.scatter('x', 'y', c = '紫色', s = 2)

这导致:

在此处输入图像描述

我如何将其分成正方形,然后计算每个正方形中的点数?谢谢