当我运行时:
hist_2d_i = np.histogram2d(df.feature1.iloc[0], df.feature2.iloc[0], bins=\
[binsx, binsy],weights=df.weights.iloc[0])
我收到一个错误:bin 的维度必须等于样本 x 的维度。
但是如果我运行:
hist_2d_i = np.histogram2d(df.feature1.iloc[0:1], df.feature2.iloc[0:1], bins=\
[binsx, binsy],weights=df.weights.iloc[0:1])
它按预期工作。有什么区别?
该索引贯穿熊猫数据帧数据集中的样本数量。
不[0] == [0:1]
作为索引吗?