D3.js中的set.size()函数用于计算唯一元素的数量,并返回给定数组中唯一元素的数量。
用法:
d3.set([Array]).size();
参数:此函数接受字符串参数数组。
返回值:它返回给定数组中唯一元素的数量。
以下程序说明了D3.js中的d3.set.size()函数:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>d3.set.size() Function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Initialising an array
Array1 = ["a", "a", "b", "c"];
Array2 = ["c", "c", "c"];
Array3 = ["Geeks", "gfg", "GeeksforGeeks"];
// Calling the d3.set.size() function
A = d3.set(Array1).size();
B = d3.set(Array2).size();
C = d3.set(Array3).size();
// Getting the number of unique values in the array
console.log(A);
console.log(B);
console.log(C);
</script>
</body>
输出:
3 1 3
示例2:
<!DOCTYPE html>
<html>
<head>
<title>d3.set.size() Function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Calling the d3.set.size() function
// with a array parameter
A = d3.set([1, 2, 3, 3]).size();
B = d3.set(["a"]).size();
C = d3.set(["a", "b", "c", "a", "b", "c"]).size();
// Getting the number of unique values in the array
console.log(A);
console.log(B);
console.log(C);
</script>
</body>
输出:
3 1 3
参考: https://devdocs.io/d3~5/d3-collection#set_size
相关用法
- p5.js cos()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js log()用法及代码示例
- p5.js tan()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.sum()用法及代码示例
- PHP key()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js second()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.set.size() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。