Python中的 numpy.random.permutation()
借助numpy.random.permutation()方法,我们可以得到置换序列的随机样本,并通过该方法返回序列。
Syntax : numpy.random.permutation(x)
Return : Return the random sequence of permuted values.
示例 #1:
在这个例子中我们可以看到,通过使用numpy.random.permutation()方法,我们能够得到排列的序列,并使用这个方法返回序列。
Python3
# import numpy
import numpy as np
import matplotlib.pyplot as plt
# Using permutation() method
gfg = np.random.permutation(200)
count, bins, ignored = plt.hist(gfg, 14, density = True)
plt.show()
Python3
# import numpy
import numpy as np
import matplotlib.pyplot as plt
arr = np.arange(12).reshape((4, 3))
# Using permutation() method
gfg = np.random.permutation(arr)
count, bins, ignored = plt.hist(gfg, 14, density = True)
plt.show()
输出 :
示例 #2:
Python3
# import numpy
import numpy as np
import matplotlib.pyplot as plt
arr = np.arange(12).reshape((4, 3))
# Using permutation() method
gfg = np.random.permutation(arr)
count, bins, ignored = plt.hist(gfg, 14, density = True)
plt.show()
输出 :