我在创建两个图之间的差异图时遇到了一个问题matplotlib.pyplot
hexbin
,这意味着首先获取每个对应的值差异,hexbin
然后再创建差异hexbin
图。
在这里举一个简单的例子来说明我的问题,假设hexbin
Map 1 中 one 的值是 3,而hexbin
Map 2 中对应的值是 2,我想做的是先得到差 3 – 2 = 1,然后然后将其绘制在与 Map 1 和 Map 2 相同的位置的新 hexbin 映射中,即差异映射。
我的输入代码和输出图如下。谁能给我一个解决这个问题的方法?
谢谢你的时间!
In [1]: plt.hexbin(lon_origin_df, lat_origin_df)
Out[1]: <matplotlib.collections.PolyCollection at 0x13ff40610>
In [2]: plt.hexbin(lon_termination_df, lat_termination_df)
Out[2]: <matplotlib.collections.PolyCollection at 0x13fff49d0>