Why Normal Distribution
Definition 1
The probability distribution which has the following probability density function in terms of location , scale , and shape parameters is called the Skew Normal Distribution. Here, the two functions refer to the probability density function (pdf) and the cumulative distribution function (cdf) of the Standard Normal Distribution, respectively.
Description
The Skew Normal Distribution is, as the name suggests, a generalization of the Normal Distribution with a non-zero skewness . The translation is based on domestic journals2.
Code
Below is Julia code that visualizes how the probability density function of the Skew Normal Distribution changes according to in an animated way.
using Distributions, Plots
→ = 0:0.1:5
← = reverse(→)
a1 = @animate for α ∈ [→; ←; -→; -←]
SN = SkewNormal(0, 1, α)
x = -3:0.01:3
plot(x, pdf.(SN, x),
ylim = (0, 0.8),
lw = 2, color = :black,
legend = :none, title = "pdf of Skew Normal Distribution with α = $(lpad(α, 4))")
end
gif(a1, string(@__DIR__) * "/skew_normal.gif")
Figueiredo. (2013). The Skew-Normal Distribution in SPC. https://doi.org/10.57805/revstat.v11i1.128 ↩︎
장은진. (2021). 왜정규분포를 이용한 ROC 곡선에 대한 베이지안 모형. https://doi.org/10.7465/jkdi.2021.32.1.15 ↩︎