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


d3.js randomNormal()用法及代码示例


randomNormal()函数用于返回基于正态分布或高斯分布给出随机数的函数。

用法:

d3.randomNormal(mu, sigma);

参数:它采用上面给定和下面描述的两个参数。

  • mu:它是数字的期望值。如果未提供mu,则将其视为0。
  • sigma:生成的数字具有一定的标准偏差,称为sigma。

返回值:它返回一个函数。

下面给出了上述函数的一些示例。



范例1:当亩给。

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, 
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
   </script> 
  <script> 
// The ouput may be different on different machines. 
    console.log(d3.randomNormal(10, 10)()) 
    console.log(d3.randomNormal(10, 10)()) 
    console.log(d3.randomNormal(10, 10)()) 
    console.log(d3.randomNormal(10, 10)()) 
    console.log(d3.randomNormal(10, 10)()) 
  </script> 
</body> 
</html>

输出:

范例2:当亩不给。

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width,  
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
// The ouput may be different on different machines. 
    console.log(d3.randomNormal(5)()) 
    console.log(d3.randomNormal(5)()) 
    console.log(d3.randomNormal(5)()) 
    console.log(d3.randomNormal(5)()) 
    console.log(d3.randomNormal(5)()) 
    console.log(d3.randomNormal(5)()) 
  </script> 
</body> 
</html>

输出:




相关用法


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