This file is indexed.

/usr/share/doc/grads/html/gradcomdsetstat.html is in grads 3:2.1.0-2.

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
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!--Copyright (C) 1988-2005 by the Institute of Global Environment and Society (IGES). See file COPYRIGHT for more information.-->

<html>
<head>
<title>GrADS Command: set stat</title>
</head>
<body bgcolor="e0f0ff" text="#000000">

<h2><b>set stat</b></h2>
<p>
<code>set stat on | off</code>
<p>
If <code>on</code>, GrADS will print statistical output to the terminal every time
the <a href="gradcomddisplay.html">display</a> command is executed. The statistical
information is the same as that which is output with <a href="gradcomdsetgxout.html">
set gxout stat</a>. 
<p>
<h3>Usage Notes</h3>
<ol>
<li>If you <code>"set stat on"</code>, GrADS will continue to display
the output statistics with every <a
href="gradcomddisplay.html">display</a> until you <code>"set stat
off"</code>.
<p>
<li>Use this command if you are overlaying plots and want to guarantee
that the 2nd plot will be drawn with the same range of values. See example #2.
</ol>

<p>
<h3>Examples </h3>
<ol>
<li>Here is an example of the statistical output from a horizontal temperature plot:
<p>
<pre>
Data Type = grid
Dimensions = 0 1
I Dimension = 1 to 73 Linear 0 5
J Dimension = 1 to 46 Linear -90 4
Sizes = 73 46 3358
Undef value = -2.56e+33
Undef count = 1763  Valid count = 1595
Min, Max = 243.008 302.818
Cmin, cmax, cint = 245 300 5
Stats[sum,sumsqr,root(sumsqr),n]:     452778 1.29046e+08 11359.8 1595
Stats[(sum,sumsqr,root(sumsqr))/n]:     283.874 80906.7 284.441
Stats[(sum,sumsqr,root(sumsqr))/(n-1)]: 284.052 80957.4 284.53
Stats[(sigma,var)(n)]:     17.9565 322.437
Stats[(sigma,var)(n-1)]:   17.9622 322.64
Contouring: 245 to 300 interval 5 
</pre>
<p>
<li>Here is an example showing how to overlay plots with the same axis range:
<p>
<pre>
* display a time series
'set stat on'
'd t(lon=180)'

* get the yaxis range
range = sublin(result,9)
cmin = subwrd(range,5)
cmax = subwrd(range,6)
cint = subwrd(range,7)

* draw an overlay
'set vrange 'cmin' 'cmax
'd t(lon=0)'
'set stat off'
</pre>
</ol>

</body>
</html>