用python洗牌数组最简单的方法是什么?


当前回答

你可以用随机键对数组排序

sorted(array, key = lambda x: random.random())

键只读取一次,所以在排序期间比较项目仍然有效。

但看起来random.shuffle(array)会更快,因为它是用C写的

顺便说一下,这是O(Nlog(N)

其他回答

import random
random.shuffle(array)

如果你想要一个新的数组,你可以使用sample:

import random
new_array = random.sample( array, len(array) )
# arr = numpy array to shuffle

def shuffle(arr):
    a = numpy.arange(len(arr))
    b = numpy.empty(1)
    for i in range(len(arr)):
        sel = numpy.random.random_integers(0, high=len(a)-1, size=1)
        b = numpy.append(b, a[sel])
        a = numpy.delete(a, sel)
    b = b[1:].astype(int)
    return arr[b]

你可以用随机键对数组排序

sorted(array, key = lambda x: random.random())

键只读取一次,所以在排序期间比较项目仍然有效。

但看起来random.shuffle(array)会更快,因为它是用C写的

顺便说一下,这是O(Nlog(N)

另一种方法是使用sklearn

from sklearn.utils import shuffle
X=[1,2,3]
y = ['one', 'two', 'three']
X, y = shuffle(X, y, random_state=0)
print(X)
print(y)

输出:

[2, 1, 3]
['two', 'one', 'three']

优点:可以同时随机多个数组,而不会中断映射。'random_state'可以控制可复制行为的变换。