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


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


D3.js中的d3.scaleQuantile()的quantile()函数用于返回对应于给定输入值的范围内的值。此输入值位于指定的域中。

用法:

quantile( value )

参数:此函数接受上面给定并在下面描述的单个参数:

  • value:它采用位于域中的数值。

返回值:此函数返回对应于指定范围的值。

以下示例程序旨在说明D3.js中的quantile()函数:



例:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
    <script src="https://d3js.org/d3-color.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-interpolate.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-scale-chromatic.v1.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green">GeeksforGeeks</h1> 
  
    <p>d3.scaleQuantile | quantile() Function </p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
  
            // Setting domain and range 
            // for the scale 
            .domain([1, 10]) 
            .range([0, 960]); 
  
        // Printing the output using the 
        // quantile() function 
        document.write( 
            "<h3>" + quantile(1) + "</h3>"); 
        document.write( 
            "<h3>" + quantile(5) + "</h3>"); 
        document.write( 
            "<h3>" + quantile(9) + "</h3>"); 
        document.write( 
            "<h3>" + quantile(10) + "</h3>"); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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