Skip to content

Commit e017317

Browse files
Merge pull request #470 from scikit-learn-contrib/369-incoherent-sign-on-mapiemetricscumulative_differences
Change the sign in the equation of C_k in the Kolmogorov-Smirnov statistical test documentation
2 parents 4c25001 + f1f0f14 commit e017317

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ History
55
0.8.x (2024-xx-xx)
66
------------------
77

8+
* Change the sign of C_k in the `Kolmogorov-Smirnov` test documentation
89
* Building a training set with a fraction between 0 and 1 with `n_samples` attribute when using `split` method from `Subsample` class.
910

1011
0.8.6 (2024-06-14)

doc/theoretical_description_metrics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ and their corresponding labels :math:`y_i` and to compare its properties to that
195195
cumulative differences on sorted scores:
196196

197197
.. math::
198-
C_k = \frac{1}{N}\sum_{i=1}^k (s_i - y_i)
198+
C_k = \frac{1}{N}\sum_{i=1}^k (y_i - s_i)
199199
200200
We also introduce a typical normalization scale :math:`\sigma`:
201201

0 commit comments

Comments
 (0)