This file is indexed.

/usr/share/doc/grass-doc/html/v.univar.sh.html is in grass-doc 6.4.3-3.

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
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>GRASS GIS manual: v.univar.sh</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="grassdocs.css" type="text/css">
</head>
<body bgcolor="white">

<img src="grass_logo.png" alt="GRASS logo"><hr align=center size=6 noshade>

<h2>NAME</h2>
<em><b>v.univar.sh</b></em>  - Calculates univariate statistics on selected table column for a GRASS vector map.
<h2>KEYWORDS</h2>
vector, statistics
<h2>SYNOPSIS</h2>
<b>v.univar.sh</b><br>
<b>v.univar.sh help</b><br>
<b>v.univar.sh</b> [-<b>e</b>] <b>table</b>=<em>string</em> <b>column</b>=<em>string</em>  [<b>database</b>=<em>string</em>]   [<b>driver</b>=<em>string</em>]   [<b>where</b>=<em>string</em>]   [--<b>verbose</b>]  [--<b>quiet</b>] 

<h3>Flags:</h3>
<DL>
<DT><b>-e</b></DT>
<DD>Extended statistics (quartiles and 90th percentile)</DD>

<DT><b>--verbose</b></DT>
<DD>Verbose module output</DD>
<DT><b>--quiet</b></DT>
<DD>Quiet module output</DD>
</DL>

<h3>Parameters:</h3>
<DL>
<DT><b>table</b>=<em>string</em></DT>
<DD>Name of data table</DD>

<DT><b>column</b>=<em>string</em></DT>
<DD>Column on which to calculate statistics (must be numeric)</DD>

<DT><b>database</b>=<em>string</em></DT>
<DD>Database/directory for table</DD>

<DT><b>driver</b>=<em>string</em></DT>
<DD>Database driver</DD>

<DT><b>where</b>=<em>string</em></DT>
<DD>WHERE conditions of SQL statement without 'where' keyword</DD>

</DL>
<h2>DESCRIPTION</h2>


Calculates basic univariate statistics for numeric
attributes in a data table. It will calculate minimum, maximum, range, mean,
standard deviation, variance, coefficient of variation, quartiles, median,
and 90th percentile. It is closely based on <em>r.univar.sh</em> and uses
<em>db.select</em> to create a list values for statistical calculations.
This script could be replaced by an updated <em>v.univar</em>.
<p>

<em>(GRASS Shell Script)</em>

<h2>NOTES</h2>

If the database and driver are not specified, the module will use the default
values set in <em>db.connect</em>.


<h2>EXAMPLE</h2>

<div class="code"><pre>
g.region rast=elevation.10m -p
v.random out=samples n=100
v.db.addtable samples col="heights double precision"
v.what.rast samples rast=elevation.10m col=heights
v.db.select samples

v.univar.sh samples col=heights
</pre></div>

<h2>SEE ALSO</h2>

<em>
<a href="r.univar.html">r.univar</a>,
<a href="r.univar.sh.html">r.univar.sh</a>, 
<a href="v.univar.html">v.univar,</a>,
<a href="db.select.html">db.select</a>,
<a href="d.vect.thematic.html">d.vect.thematic</a></em>

<p> AUTHORS
v.univar.sh: Michael Barton, Arizona State University
<p>
and authors of <em>r.univar.sh</em>
<p>
<i>Last changed: $Date: 2011-11-08 01:42:51 -0800 (Tue, 08 Nov 2011) $</i>
<HR>
<P><a href="index.html">Main index</a> - <a href="vector.html">vector index</a> - <a href="full_index.html">Full index</a></P>
<P>&copy; 2003-2013 <a href="http://grass.osgeo.org">GRASS Development Team</a></p>
</body>
</html>