博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
numpy 和 pandas 中常用的一些函数及其参数
阅读量:5021 次
发布时间:2019-06-12

本文共 996 字,大约阅读时间需要 3 分钟。

numpy中有一些常用的用来产生随机数的函数,randn()和rand()就属于这其中。 

numpy.random.randn(d0, d1, …, dn)是从标准正态分布中返回一个或多个样本值。 
numpy.random.rand(d0, d1, …, dn)的随机样本位于[0, 1)中。 

 

代码:

import numpy as np arr1 = np.random.randn(2,4)print(arr1)print('******************************************************************')arr2 = np.random.rand(2,4)print(arr2) 

结果:

[[-1.03021018  0.5197033   0.52117459 -0.70102661] [ 0.98268569  1.21940697 -1.095241   -0.38161758]]******************************************************************[[ 0.19947349  0.05282713  0.56704222  0.45479972] [ 0.28827103  0.1643551   0.30486786  0.56386943]]

Notes

For random samples from N(\mu, \sigma^2), use:

sigma * np.random.randn(...) + mu

Examples

>>> np.random.randn()2.1923875335537315 #random

Two-by-four array of samples from N(3, 6.25):

>>> 2.5 * np.random.randn(2, 4) + 3array([[-4.49401501,  4.00950034, -1.81814867,  7.29718677],  #random       [ 0.39924804,  4.68456316,  4.99394529,  4.84057254]]) #random

 

转载于:https://www.cnblogs.com/xk-bench/p/8379407.html

你可能感兴趣的文章
ServiceStack 介绍
查看>>
Centos7下载和安装教程
查看>>
无谓的通宵加班之后的思索
查看>>
S1的小成果:MyKTV系统
查看>>
从setting文件导包
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
union和union all
查看>>
Github 开源:使用控制器操作 WinForm/WPF 控件( Sheng.Winform.Controls.Controller)
查看>>
PMD使用提醒
查看>>
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>