This file is indexed.

/usr/share/doc/libghc-chart-doc/html/Numeric-Histogram.html is in libghc-chart-doc 1.8.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Numeric.Histogram</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script src="file:///usr/share/javascript/mathjax/MathJax.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_Numeric-Histogram.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Numeric-Histogram.html">Source</a></li><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">Chart-1.8.1: A library for generating 2D Charts and Plots</p></div><div id="content"><div id="module-header"><table class="info"><tr><th>Safe Haskell</th><td>None</td></tr><tr><th>Language</th><td>Haskell98</td></tr></table><p class="caption">Numeric.Histogram</p></div><div id="synopsis"><p id="control.syn" class="caption expander" onclick="toggleSection('syn')">Synopsis</p><ul id="section.syn" class="hide" onclick="toggleSection('syn')"><li class="src short"><span class="keyword">type</span> <a href="#t:Range">Range</a> a = (a, a)</li><li class="src short"><a href="#v:binBounds">binBounds</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [<a href="Numeric-Histogram.html#t:Range">Range</a> a]</li><li class="src short"><a href="#v:histValues">histValues</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [a] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a>)</li><li class="src short"><a href="#v:histWeightedValues">histWeightedValues</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [(<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Double">Double</a>, a)] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Double">Double</a>)</li><li class="src short"><a href="#v:histWithBins">histWithBins</a> :: (<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Num">Num</a> w, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a) =&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a) -&gt; [(w, a)] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, w)</li></ul></div><div id="interface"><h1>Documentation</h1><div class="top"><p class="src"><span class="keyword">type</span> <a id="t:Range" class="def">Range</a> a = (a, a) <a href="src/Numeric-Histogram.html#Range" class="link">Source</a> <a href="#t:Range" class="selflink">#</a></p></div><div class="top"><p class="src"><a id="v:binBounds" class="def">binBounds</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [<a href="Numeric-Histogram.html#t:Range">Range</a> a] <a href="src/Numeric-Histogram.html#binBounds" class="link">Source</a> <a href="#v:binBounds" class="selflink">#</a></p><div class="doc"><p>'binBounds a b n' generates bounds for <code>n</code> bins spaced linearly between
 <code>a</code> and <code>b</code></p></div></div><div class="top"><p class="src"><a id="v:histValues" class="def">histValues</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [a] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a>) <a href="src/Numeric-Histogram.html#histValues" class="link">Source</a> <a href="#v:histValues" class="selflink">#</a></p><div class="doc"><p>'histValues a b n vs' returns the bins for the histogram of
 <code>vs</code> on the range from <code>a</code> to <code>b</code> with <code>n</code> bins</p></div></div><div class="top"><p class="src"><a id="v:histWeightedValues" class="def">histWeightedValues</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a =&gt; a -&gt; a -&gt; <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Data-Int.html#t:Int">Int</a> -&gt; [(<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Double">Double</a>, a)] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Double">Double</a>) <a href="src/Numeric-Histogram.html#histWeightedValues" class="link">Source</a> <a href="#v:histWeightedValues" class="selflink">#</a></p><div class="doc"><p>'histValues a b n vs' returns the bins for the weighted histogram of
 <code>vs</code> on the range from <code>a</code> to <code>b</code> with <code>n</code> bins</p></div></div><div class="top"><p class="src"><a id="v:histWithBins" class="def">histWithBins</a> :: (<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:Num">Num</a> w, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.0.0/Prelude.html#t:RealFrac">RealFrac</a> a) =&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a) -&gt; [(w, a)] -&gt; <a href="file:///usr/share/doc/libghc-vector-doc/html/Data-Vector.html#t:Vector">Vector</a> (<a href="Numeric-Histogram.html#t:Range">Range</a> a, w) <a href="src/Numeric-Histogram.html#histWithBins" class="link">Source</a> <a href="#v:histWithBins" class="selflink">#</a></p><div class="doc"><p>'histWithBins bins xs' is the histogram of weighted values <code>xs</code> with <code>bins</code></p></div></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.17.2</p></div></body></html>