PearsonDistribution
Description
A PearsonDistribution object consists of the parameters and
model description for a Pearson probability distribution.
The Pearson distribution is a four-parameter distribution with an arbitrary mean, standard deviation, skewness, and kurtosis. This distribution is often used to model asymmetric data that is prone to outliers.
| Parameter | Description |
|---|---|
| μ | Mean |
| σ | Standard deviation |
| γ | Skewness γ, which 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 κ, which 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, and distributions that are less prone have a kurtosis value less than 3. κ must be greater than γ2 + 1. |
Creation
Create a PearsonDistribution object using the makedist function. When you use the function without specifying any name-value
arguments, the PearsonDistribution object 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
More About
Version History
Introduced in R2025a
