D3.js中的d3.mean()函数用于返回给定数组元素的均值或平均值。如果数组为空,则返回undefined。
用法:
d3.mean(Array)
参数:此函数接受参数Array,该参数是要计算均值的元素数组。这里的元素应该是整数而不是字符串,否则返回未定义。
返回值:它返回给定数组元素的平均值或平均值。
以下程序说明了D3.js中的d3.mean()函数。
示例1:
<html>
<head>
<title>
Getting mean of the
elements of given array
</title>
</head>
<body>
<script src='https://d3js.org/d3.v4.min.js'>
</script>
<script>
// initialising the array of elements
var Array1 = [10, 20, 30, 40, 50, 60];
var Array2 = [1, 2];
var Array3 = [0, 1.5, 6.8];
var Array4 = [.8, .08, .008];
// Calling to d3.mean() function
A = d3.mean(Array1);
B = d3.mean(Array2);
C = d3.mean(Array3);
D = d3.mean(Array4);
// Getting mean of the given array's element
document.write(A + "<br>");
document.write(B + "<br>");
document.write(C + "<br>");
document.write(D + "<br>");
</script>
</body>
</html>
输出:
35 1.5 2.766666666666667 0.296
示例2:
<html>
<head>
<title>
Getting mean of the
elements of given array
</title>
</head>
<body>
<script src='https://d3js.org/d3.v4.min.js'>
</script>
<script>
// initialising the array of elements
var Array1 = [];
var Array2 = ["a", "b", "c"];
var Array3 = [1, "B", "C"];
var Array4 = ["Geek", "Geeks", 2, 3, "GeeksforGeeks"];
// Calling to d3.mean() function
A = d3.mean(Array1);
B = d3.mean(Array2);
C = d3.mean(Array3);
D = d3.mean(Array4);
// Getting mean of the given array's element
document.write(A + "<br>");
document.write(B + "<br>");
document.write(C + "<br>");
document.write(D + "<br>");
</script>
</body>
</html>
输出:
undefined undefined 1 2.5
注意:在上面的输出中,如果参数为空或字符串,则返回undefined;如果参数为包含一些整数值的字符串,则返回整数值的平均值。
参考: https://devdocs.io/d3~4/d3-array#mean
相关用法
- PHP each()用法及代码示例
- p5.js day()用法及代码示例
- p5.js int()用法及代码示例
- p5.js second()用法及代码示例
- PHP dir()用法及代码示例
- PHP each()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.lab()用法及代码示例
- d3.js d3.max()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.mean() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。