python数据分析之numpy的随机函数

import numpy as np rand(d0,d1,d2,...dn)根据d0-dn创建随机数组浮点数[0,1) 值为均匀分布 randn(d0,d1,d2....dn)根据d0-dn创建随机数组,标准正态分布 randint(low,high,shape)根据shape创建随机数组 元素范围为[low,high) seed(s) 随机数种子,s是给定的种子值  假如我们每次使用的随机数种
相关文章
相关标签/搜索