我有一个表 (X, Y),其中 X 是矩阵,Y 是类向量。这里有一个例子:
X = 0 0 1 0 1 and Y = 1
0 1 0 0 0 1
1 1 1 0 1 0
我想使用 Mann-Whitney U 检验来计算特征重要性(特征选择)
from scipy.stats import mannwhitneyu
results = np.zeros((X.shape[1],2))
for i in xrange(X.shape[1]):
u, prob = mannwhitneyu(X[:,i], Y)
results[i,:] = u, pro
我不确定这是否正确?u = 990
对于某些列,我获得了大表的大值。