如何在python

时间:2017-12-15 08:41:44

标签: python

我需要一些帮助才能创建一个dim(65,8)矩阵,其中所有元素都是python范围内的唯一整数(522)

感谢名单!!

def bootstrap(x, num_samples, statistic, alpha):
"""Returns bootstrap estimate of 100.0*(1-alpha) CI for statistic."""
n = len(x)
y=len(x)**(1/3)
idx = np.random.randint(0, n, (num_samples, y)) #Return unique random integers from 0 to 520 in a martix with size num_samples X 520.
samples = x[idx]
stat = np.sort(statistic(samples, 1))
return (stat[int((alpha/2.0)*num_samples)],
        stat[int((1-alpha/2.0)*num_samples)])

2 个答案:

答案 0 :(得分:3)

在我看来,最简单的方法是简单地改变元素的范围,即

x = numpy.arange(1, 521)
numpy.random.shuffle(x)

然后使用numpy.reshape

将其重新整理为您想要的矩阵
x = numpy.reshape(x, (65,8))

答案 1 :(得分:0)

非常感谢你! 但是,我认为正确的答案是:

x = np.arange(1, 521).reshape((65, 8))
np.random.shuffle(x)