SkewNormalDistribution
SkewNormalDistribution[μ, σ, α] represents a skew-normal distribution with shape parameter α, location parameter μ, and scale parameter σ.
Examples
Create a skew-normal distribution:
dist = SkewNormalDistribution[0, 1, 2]Plot the probability density:
Plot[PDF[SkewNormalDistribution[0, 1, 2], x], {x, -4, 4}]Generate random samples:
RandomVariate[SkewNormalDistribution[0, 1, 5], 10]Please visit the official Wolfram Language Reference for more details.