PearsonDistribution
Description
A PearsonDistribution
object consists of parameters and model
description for a Pearson probability distribution.
The Pearson distribution is a four-parameter distribution that has an arbitrary mean, standard deviation, skewness, and kurtosis. This distribution is often used to model asymmetric data that is prone to outliers.
The Pearson distribution uses the following parameters:
Parameter | Description |
---|---|
μ | Mean |
σ | Standard deviation |
γ | Skewness. γ is a measure of the asymmetry of the data around the sample mean. If the skewness is negative, the data spreads out more to the left of the mean than to the right. If the skewness is positive, the data spreads out more to the right. γ2 must be less than κ – 1. |
κ | Kurtosis. κ is a measure of how prone a distribution is to outliers. The kurtosis of the normal distribution is 3. Distributions that are more prone to outliers than the normal distribution have a kurtosis value greater than 3; distributions that are less prone have a kurtosis value less than 3. κ must be greater than γ2 + 1. |
Creation
Create a Pearson distribution with specified parameter values using the makedist
. The default value of this distribution without any specified
parameters corresponds to the normal distribution.
Properties
Object Functions
cdf | Cumulative distribution function |
icdf | Inverse cumulative distribution function |
iqr | Interquartile range of probability distribution |
mean | Mean of probability distribution |
median | Median of probability distribution |
pdf | Probability density function |
plot | Plot probability distribution object |
random | Random numbers |
std | Standard deviation of probability distribution |
truncate | Truncate probability distribution object |
var | Variance of probability distribution |
Examples
Version History
Introduced in R2025a