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


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


分位数.domain()函数用于设置分位数标度的域。给定的域数组不能为空,并且必须至少包含一个数字值。

用法:

quantile.domain([domain]);

参数:该函数仅采用上面给出的和下面描述的一个参数。

  • domain:此参数设置刻度的范围,即最小值和最大值。它接受离散数值数组。该数组必须至少包含一个数字值。

返回值:此函数不返回任何值。

以下示例说明了D3.js中的Quantile.domain()函数:



范例1:

HTML

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta name="viewport" path1tent= 
        "width=device-width,initial-scale=1.0" /> 
  
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
</head> 
  
<body> 
    <h2 style="color:green;">GeekforGeeks</h2> 
  
    <p>quantile.domain() Function</p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale 
            .domain([1000]) 
            // Setting the range of the scale 
            .range([16]); 
  
        // Printing the output 
        document.write("<h3>quantile(10):"  
                + quantile(10) + "</h3>"); 
        document.write("<h3>quantile(20):"  
                + quantile(20) + "</h3>"); 
    </script> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta name="viewport" path1tent= 
        "width=device-width, initial-scale=1.0" /> 
  
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
</head> 
  
<body> 
    <h2 style="color:green;">GeekforGeeks</h2> 
  
    <p>quantile.domain() Function</p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale 
            .domain([1, 2, 3, 4]) 
            // Setting the range of the scale 
            .range([6, 16, 24, 28]); 
  
        // Printing the output 
        document.write("<h3>quantile(1):" 
                + quantile(1) + "</h3>"); 
        document.write("<h3>quantile(2):"  
                + quantile(2) + "</h3>"); 
        document.write("<h3>quantile(3):"  
                + quantile(3) + "</h3>"); 
        document.write("<h3>quantile(4):"  
                + quantile(4) + "</h3>"); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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