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


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


Quantile.copy()函数返回原始比例的精确副本。如果在任何一个比例尺上进行任何更改,都不会影响另一个比例尺。

用法:

quantile.copy();

参数:此函数不接受任何参数。

返回值:此函数返回原始比例的副本。

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



范例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.copy() Function</p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale. 
            .domain([1, 2, 15, 19]) 
            // Discrete range 
            .range(["red", "green", "black", "blue"]); 
        // Printing the output. 
        document.write("<h3>Form original scale:</h3>"); 
  
        document.write("<span>quantile(1):"  
                + quantile(1) + "</span><br>"); 
        document.write("<span>quantile(15):"  
                + quantile(15) + "</span><br>"); 
        document.write("<h3>Form copy scale:</h3>"); 
        var copyscale = quantile.copy(); 
        document.write("<span>copyscale(1):"  
                + copyscale(1) + "</span><br>"); 
        document.write("<span>copyscale(15):" 
                + copyscale(15) + "</span><br>"); 
    </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.copy() Function </p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale. 
            .domain([1, 2, 15, 19]) 
            // Discrete range 
            .range(["red", "green", "black", "blue"]); 
  
        // Printing the output. 
        document.write("<h3>Form original scale:</h3>"); 
        document.write("<span>quantile(2):"  
                + quantile(2) + "</span><br>"); 
        document.write("<span>quantile(19):"  
                + quantile(19) + "</span><br>"); 
        document.write("<h3>Form copy scale:</h3>"); 
        // Changing th copy scale.  
        var copyscale = quantile.copy() 
            .range([1.22, 11.5421, 2.2154, 3.2154]); 
        document.write("<span>copyscale(2):"  
                + copyscale(2) + "</span><br>"); 
        document.write("<span>copyscale(19):"  
                + copyscale(19) + "</span><br>"); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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