当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.random.permutation()用法及代码示例


借助numpy.random.permutation()方法,可以使用该方法获得置换序列和返回序列的随机样本。

用法:numpy.random.permutation(x)

返回:返回排列值的随机序列。

范例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()

输出:

范例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()

输出:

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 numpy.random.permutation() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。