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


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


randomExponential()函数用于返回根据 index 分布生成随机数的函数。

用法:

d3.randomExponential(lambda);

参数:它仅采用上面给出和下面描述的一个参数。

  • lambda: index 分布函数的比率等于泊松过程中事件之间的时间。

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

注意:每次运行该函数时,输出值可能都不同。



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

范例1:当λ大于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 value of the output may be 
 different each time the function is run.*/ 
    console.log(d3.randomExponential(5)()) 
    console.log(d3.randomExponential(5)()) 
    console.log(d3.randomExponential(5)()) 
    console.log(d3.randomExponential(5)()) 
    console.log(d3.randomExponential(5)()) 
  </script> 
</body> 
</html>

输出:

范例2:当lambda的值小于一时。

<!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 value of the output may be 
 different each time the function is run.*/ 
    console.log(d3.randomExponential(0.5)()) 
/* Smaller the lamba greater the random value generated. 
    console.log(d3.randomExponential(0.05)()) 
    console.log(d3.randomExponential(0.005)()) 
    console.log(d3.randomExponential(0.0005)()) 
  </script> 
</body> 
</html>

输出:




相关用法


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