- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前有一个散点图,其中包含 3 组数据、x 坐标、y 坐标以及每个 x、y 处的值。这些集合是一维 numpy 数组。
matplotlib 中的 matplotlib.axes.Axes.hexbin
函数会累积每个 bin 中每个 x,y 处的所有分配值,然后取其平均值。这会生成一个带有六边形 bin 的色图。
是否可以使用 matplotlib 或 numpy 做类似的事情,但使用方形容器?
这是当前的 hexbin 代码:
plt.hexbin(daylim,Llim, C = elim, gridsize = 168,bins = 'log')
最佳答案
您可以在绘图之前计算要在分箱二维图中显示的值,然后显示为 imshow
图。
如果您乐于使用 pandas,一种选择是根据 cut (pandas.cut
) x 和 y 数据对 z
数据进行分组。然后应用平均值 (.mean()
) 并拆栈以获得数据透视表。
df.z.groupby([pd.cut(x, bins=xbins), pd.cut(y, bins=ybins)]) \
.mean().unstack(fill_value=0)
这是一个完整的例子:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.colors
x = np.arange(1,8)
y = np.arange(1,6)
X,Y = np.meshgrid(x,y)
df = pd.DataFrame({"x":X.flatten(), "y":Y.flatten(), "z":(X*Y).flatten()})
xbins = [0,4,8]
ybins = [0,3,6]
hist = df.z.groupby([pd.cut(df.x, bins=xbins), pd.cut(df.y, bins=ybins)]) \
.mean().unstack(fill_value=0)
print hist
im = plt.imshow(hist.values, norm=matplotlib.colors.LogNorm(1,100))
plt.xticks(range(len(hist.index)), hist.index)
plt.yticks(range(len(hist.columns)), hist.columns)
plt.colorbar(im)
plt.show()
必须手动创建对数范数,并且需要根据分箱标记刻度。
关于python - 在 matplotlib 中取方格的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44395429/
我想用 Bootstrap 4 创建一个响应式正方形网格,为此,我正在做这样的事情(一行):
我得到了一个数字列表(n=9),想把它们画在一个 3*3 的方形网格中,每个网格都用相应的数字填充。如何在 R 中执行此操作而不安装其他软件包,例如情节。非常感谢! 最佳答案 这是一个 ggplot比
二维平面上有两种类型的单位,绿色单位 (G) 和红色单位 (R)。平面表示为一个n×n的矩阵,每个单元表示为矩阵中的一个元素。 如果两个单元的颜色不同,则称为“冲突对”。目标是找到包含最多“冲突对”的
我是一名优秀的程序员,十分优秀!