当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.pairs()用法及代码示例


D3.js中的d3.pairs()函数用于根据给定的数组元素创建一对数组元素。如果给定数组的元素少于两个,则它将返回空数组。

用法:

d3.pairs(Array)

参数:此函数接受参数Array,其元素将配对。


返回值:它返回配对元素的数组。

以下程序说明了D3.js中的d3.pairs()函数。

示例1:

<html> 
  
<head> 
    <title> 
      Getting pair of two elements  
      from the elements of given array 
  </title> 
</head> 
  
<body> 
    <script src='https://d3js.org/d3.v4.min.js'> 
  </script> 
  
    <script> 
        // initialising the arrays of elements 
        var Array1 = [10, 20, 30, 40]; 
        var Array2 = [1, 2, 3, 4]; 
  
        // Calling to d3.pairs() function 
        A = d3.pairs(Array1); 
        B = d3.pairs(Array2); 
  
        // Getting pair of two elements from  
        // the elements of given array 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
    </script> 
</body> 
  
</html>

输出:

[[10, 20], [20, 30], [30, 40]]
[[1, 2], [2, 3], [3, 4]]

示例2:

<html> 
  
<head> 
    <title> 
      Getting pair of two elements 
      from the elements of given array 
  </title> 
</head> 
  
<body> 
    <script src='https://d3js.org/d3.v4.min.js'> 
  </script> 
  
    <script> 
        // initialising the arrays of elements 
        var Array1 = ["A", "B", "C"]; 
        var Array2 = ["a", "b"]; 
  
        // Calling to d3.pairs() function 
        A = d3.pairs(Array1); 
        B = d3.pairs(Array2); 
  
        // Getting pair of two elements from 
        // the elements of given array 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
    </script> 
</body> 
  
</html>

输出:

[[A, B], [B, C]]
[a, b]


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.pairs() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。