diff options
author | Stephan Hoyer <shoyer@gmail.com> | 2018-11-20 09:26:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 09:26:02 -0800 |
commit | c3c6cd5e70e1f10ce374fb580debc846922a9232 (patch) | |
tree | 4fa4c3b6c89c43a3fc749162559c3bd1d36e0c38 | |
parent | 219a52cdeeab4afdd20e39fc1bba949b08126e6e (diff) | |
download | numpy-c3c6cd5e70e1f10ce374fb580debc846922a9232.tar.gz |
DOC: mention LOOCV in description of "stone" rule.
-rw-r--r-- | numpy/lib/histograms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index 6891c79a0..6666d8628 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -497,8 +497,8 @@ def histogram_bin_edges(a, bins=10, range=None, weights=None): variability and data size. 'stone' - Estimator based on minimizing the estimated integrated - squared error (ISE) and can be regarded as a generalization + Estimator based on leave-one-out cross-validation estimate of + the integrated squared error. Can be regarded as a generalization of Scott's rule. 'rice' |