From 15bb0f5d44f54ae592b316edfba667c72cb26333 Mon Sep 17 00:00:00 2001 From: aleicazatti Date: Fri, 12 Jul 2024 12:52:00 -0300 Subject: [PATCH] uniform minor fix --- docs/examples/gallery/uniform.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/examples/gallery/uniform.md b/docs/examples/gallery/uniform.md index ae1c0b6d..89eca7f2 100644 --- a/docs/examples/gallery/uniform.md +++ b/docs/examples/gallery/uniform.md @@ -14,9 +14,6 @@ The Uniform distribution is a continuous probability distribution bounded betwee The probability density of the Uniform distribution is constant between $lower$ and $upper$ and zero elsewhere. Some experiments of physical origin exhibit this kind of behaviour. For instance, if we record, for a long time, the times at which radioactive particles are emitted within each hour, the outcomes will be uniform on the interval [0, 60] minutes interval. - -we encounter a continuous random variable that describes an experiment where the outcome is completely arbitrary, except that we know it lies between certain bounds. Many experiments of physical origin exhibit this kind of behavior. For instance, consider an experiment where we measure the emission of radioactive particles from some material over a long period. If we record the times at which particles are emitted within each hour, the outcomes will lie in the interval [0, 60] minutes - The Uniform distribution is the maximum entropy probability distribution for a random variable under no constraint other than that it is contained in the interval $[lower,upper]$. It's often employed for generating random numbers from the cumulative distribution function (see [inverse transform sampling](https://en.wikipedia.org/wiki/Inverse_transform_sampling)). It is also used as the basis of some statistical tests (see [probability integral transform](https://en.wikipedia.org/wiki/Probability_integral_transform)). Sometimes, it can be used as a "non-informative" (flat) prior in Bayesian statistics when there is no prior knowledge about the parameter other than its range, but this is discouraged unless the range has a physical meaning and values outside of it are impossible. ## Probability Density Function (PDF):