我有一个二维数组,在给定另一列中的条件的情况下,我试图在其中绘制一列中所有行的直方图。我试图在 plt.hist() 命令中选择子数据,以避免制作大量子数组,我已经知道该怎么做。例如,如果
a_long_named_array = [1, 5]
[2, 6]
[3, 7]
我可以创建我的数组的一个子集,使得第一列大于 5 通过编写
a_long_named_subarray = a_long_named_array[a_long_named_array[:,1] > 5]
如何在不制作上述子数组的情况下绘制此子数据?请看下文。
import numpy as np
import matplotlib.pyplot as plt
#Generate 2D array
arr = np.array([np.random.random_integers(0,10, 10), np.arange(0,10)])
#Transpose it
arr = arr.T
#----------------------------------------------------------------------------
#Plotting a Histogram: This works
#----------------------------------------------------------------------------
#Plot all the rows of the 0'th column
plt.hist(arr[:,0])
plt.show()
#----------------------------------------------------------------------------
#Plotting a conditional Histogram: This is what I am trying to do. This Doesn't work.
#----------------------------------------------------------------------------
#Plot all the rows of the 0th column where the 1st column is some condition (here > 5)
plt.hist(arr[:,0, where 1 > 5])
plt.show()
quit()