~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to vector/v.normal/v.normal.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
<em>v.normal</em>
 
3
computes tests of normality on vector points.
 
4
 
 
5
<h2>NOTES</h2>
 
6
 
 
7
The tests that <em>v.normal</em> performs are indexed
 
8
below.  The tests that are performed are specified by
 
9
giving an index, ranges of indices, or multiple thereof.
 
10
 
 
11
<ol>
 
12
<li> Sample skewness and kurtosis
 
13
<li> Geary's a-statistic and an approximate normal transformation
 
14
<li> Extreme normal deviates
 
15
<li> D'Agostino's D-statistic 
 
16
<li> Modified Kuiper V-statistic 
 
17
<li> Modified Watson U^2-statistic 
 
18
<li> Durbin's Exact Test (modified Kolmogorov)
 
19
<li> Modified Anderson-Darling statistic 
 
20
<li> Modified Cramer-Von Mises W^2-statistic 
 
21
<li> Kolmogorov-Smirnov D-statistic (modified for normality testing)
 
22
<li> Chi-Square test statistic (equal probability classes) and 
 
23
     the number of degrees of freedom
 
24
<li> Shapiro-Wilk W Test
 
25
<li> Weisberg-Binghams W'' (similar to Shapiro-Francia's W')
 
26
<li> Royston's extension of W for large samples
 
27
<li> Kotz Separate-Families Test for Lognormality vs. Normality
 
28
</ol>
 
29
 
 
30
<h2>EXAMPLE</h2>
 
31
 
 
32
<!-- do a meaningful example -->
 
33
Compute the sample skewness and kurtosis, Geary's
 
34
a-statistic and an approximate normal transformation,
 
35
extreme normal deviates, and Royston's W for the
 
36
<em>random</em> vector points:
 
37
 
 
38
<div class="code"><pre>
 
39
g.region raster=elevation -p
 
40
v.random random n=200
 
41
v.db.addtable random colum="elev double precision"
 
42
v.what.rast random rast=elevation column=elev
 
43
v.normal random tests=1-3,14 column=elev
 
44
</pre></div>
 
45
 
 
46
<!-- TODO: find references , e.g.
 
47
     http://www.itl.nist.gov/div898/handbook/eda/section3/eda35.htm
 
48
-->
 
49
 
 
50
<h2>SEE ALSO</h2>
 
51
 
 
52
<em>
 
53
<a href="v.univar.html">v.univar</a>
 
54
</em>
 
55
 
 
56
<h2>AUTHOR</h2>
 
57
 
 
58
<a href="http://mccauley-usa.com/">James Darrell McCauley</a>
 
59
<a href="mailto:darrell@mccauley-usa.com">&lt;darrell@mccauley-usa.com&gt;</a>,
 
60
<br>when he was at:
 
61
<a href="https://engineering.purdue.edu/ABE/">Agricultural Engineering</a>
 
62
<a href="http://www.purdue.edu/">Purdue University</a>
 
63
 
 
64
<p><i>Last changed: $Date: 2014-12-19 22:55:37 +0100 (Fri, 19 Dec 2014) $</i>