The Uniform distribution is the simplest probability distribution, but it plays an important role in statistics since it is very useful in modeling random variables. The uniform distribution is a continuous probability distribution and is concerned with events that are equally likely to occur. The continuous random variable is said to be uniformly distributed, or having rectangular distribution on the interval . We write , if its probability density function equals and elsewhere (Lovric 2011).
The figure below shows a continuous uniform distribution , thus a distribution where all values of within the interval [-2,0.8] are , whereas all other values of are 0.
x = np.arange(-5, 5, 0.01)
plt.figure(figsize=(10, 5))
plt.plot(x, stats.uniform.pdf(x, loc=a, scale=b - a), color="darkblue")
plt.title("$X \\sim U(-2, 0.8)$")
plt.ylabel("probability")
plt.show()
The mean and the median are given by
The cumulative density function is shown below and given be the equation
plt.figure(figsize=(10, 5))
plt.plot(x, stats.uniform.cdf(x, loc=a, scale=b - a), color="darkblue")
plt.title("$X \\sim U(-2, 0.8)$")
plt.ylabel("cummulative probability")
plt.show()
Citation
The E-Learning project SOGA-Py was developed at the Department of Earth Sciences by Annette Rudolph, Joachim Krois and Kai Hartmann. You can reach us via mail by soga[at]zedat.fu-berlin.de.
Please cite as follow: Rudolph, A., Krois, J., Hartmann, K. (2023): Statistics and Geodata Analysis using Python (SOGA-Py). Department of Earth Sciences, Freie Universitaet Berlin.