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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。