當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


d3.js d3.set.size()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.set.size() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。