D3.js | d3.mean()函数
D3.js 中的d3.mean()函数用于返回给定数组元素的平均值或平均值。如果数组为空,则返回未定义。
句法:
d3.mean(Array)
参数:此函数接受参数数组,该数组是要计算其平均值的元素数组。这里的元素应该是整数而不是字符串,否则它返回未定义。
返回值:它返回给定数组元素的平均值或平均值。
下面的程序说明了 D3.js 中的d3.mean()函数。
示例 1:
Getting mean of the
elements of given array
输出:
35
1.5
2.766666666666667
0.296
示例 2:
Getting mean of the
elements of given array
输出:
undefined
undefined
1
2.5
注意:在上面的输出中,如果参数为空或字符串,则返回 undefined,如果参数是包含一些整数值的字符串,则返回整数值的平均值。
参考: https://devdocs.io/d3~4/d3-array#mean