Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit b4b56c4

Browse files
committedNov 12, 2013
doc typo
1 parent 249fdca commit b4b56c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎doc/helpdb.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -5597,7 +5597,7 @@ popdisplay(d::Display)
55975597
Compute the sample standard deviation of a vector or array \"v\",
55985598
optionally along dimensions in \"region\". The algorithm returns an
55995599
estimator of the generative distribution's standard deviation under
5600-
the assumption that each entry of \"v\" is an IID draw from that
5600+
the assumption that each entry of \"v\" is an IID drawn from that
56015601
generative distribution. This computation is equivalent to
56025602
calculating \"sqrt(sum((v - mean(v)).^2) / (length(v) - 1))\".
56035603
Note: Julia does not ignore \"NaN\" values in the computation. For
@@ -5619,7 +5619,7 @@ popdisplay(d::Display)
56195619
Compute the sample variance of a vector or array \"v\", optionally
56205620
along dimensions in \"region\". The algorithm will return an
56215621
estimator of the generative distribution's variance under the
5622-
assumption that each entry of \"v\" is an IID draw from that
5622+
assumption that each entry of \"v\" is an IID drawn from that
56235623
generative distribution. This computation is equivalent to
56245624
calculating \"sum((v - mean(v)).^2) / (length(v) - 1)\". Note:
56255625
Julia does not ignore \"NaN\" values in the computation. For

‎doc/stdlib/base.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3762,7 +3762,7 @@ Statistics
37623762

37633763
.. function:: std(v[, region])
37643764

3765-
Compute the sample standard deviation of a vector or array ``v``, optionally along dimensions in ``region``. The algorithm returns an estimator of the generative distribution's standard deviation under the assumption that each entry of ``v`` is an IID draw from that generative distribution. This computation is equivalent to calculating ``sqrt(sum((v - mean(v)).^2) / (length(v) - 1))``.
3765+
Compute the sample standard deviation of a vector or array ``v``, optionally along dimensions in ``region``. The algorithm returns an estimator of the generative distribution's standard deviation under the assumption that each entry of ``v`` is an IID drawn from that generative distribution. This computation is equivalent to calculating ``sqrt(sum((v - mean(v)).^2) / (length(v) - 1))``.
37663766
Note: Julia does not ignore ``NaN`` values in the computation.
37673767
For applications requiring the handling of missing data, the ``DataArray``
37683768
package is recommended.
@@ -3774,7 +3774,7 @@ Statistics
37743774

37753775
.. function:: var(v[, region])
37763776

3777-
Compute the sample variance of a vector or array ``v``, optionally along dimensions in ``region``. The algorithm will return an estimator of the generative distribution's variance under the assumption that each entry of ``v`` is an IID draw from that generative distribution. This computation is equivalent to calculating ``sum((v - mean(v)).^2) / (length(v) - 1)``.
3777+
Compute the sample variance of a vector or array ``v``, optionally along dimensions in ``region``. The algorithm will return an estimator of the generative distribution's variance under the assumption that each entry of ``v`` is an IID drawn from that generative distribution. This computation is equivalent to calculating ``sum((v - mean(v)).^2) / (length(v) - 1)``.
37783778
Note: Julia does not ignore ``NaN`` values in the computation.
37793779
For applications requiring the handling of missing data, the ``DataArray``
37803780
package is recommended.

0 commit comments

Comments
 (0)