SKEW.P function
SKEW.P(firstParameter, otherParameters...) SKEW.P(firstParameter; otherParameters...)
firstParameter
Number or { Number }
The first parameter.
otherParameters
Number or { Number } (accepts many)
Additional parameters.
Returns
Number
A measure of how skewed a distribution is based on a population.
Returns a measure of how skewed a distribution is based on a population. Unlike SKEW, which uses an individual sample, SKEW.P uses the standard deviation of the entire population. At least three values must be given.
Example
SKEW.P(1, 3, 4, 5,
9)SKEW.P(1; 3; 4; 5;
9)
Returns roughly 0.59.