File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ defmodule Statistex do
462462 Calculates the value at the `percentile_rank`-th percentile.
463463
464464 Think of this as the value below which `percentile_rank` percent of the samples lie.
465- For example, if `Statistex.percentile (samples, 99) == 123.45`,
465+ For example, if `Statistex.percentiles (samples, 99) == 123.45`,
466466 99% of samples are less than 123.45.
467467
468468 Passing a number for `percentile_rank` calculates a single percentile.
@@ -513,6 +513,10 @@ defmodule Statistex do
513513 @ spec percentiles ( samples , number | [ number ( ) , ... ] ) ::
514514 percentiles ( )
515515 defdelegate percentiles ( samples , percentiles , options ) , to: Percentile
516+
517+ @ doc """
518+ See `percentiles/3`.
519+ """
516520 defdelegate percentiles ( samples , percentiles ) , to: Percentile
517521
518522 @ doc """
You can’t perform that action at this time.
0 commit comments