scipy.stats.Uniform.
skewness#
- Uniform.skewness(*, method=None)[source]#
- Skewness (standardized third moment) - Parameters:
- method{None, ‘formula’, ‘general’, ‘transform’, ‘normalize’, ‘cache’}
- Method used to calculate the standardized third moment. Not all methods are available for all distributions. See - momentfor details.
 
 - References [1]- Skewness, Wikipedia, https://en.wikipedia.org/wiki/Skewness - Examples - Instantiate a distribution with the desired parameters: - >>> from scipy import stats >>> X = stats.Normal(mu=1., sigma=2.) - Evaluate the skewness: - >>> X.skewness() 0.0 >>> X.skewness() == X.moment(order=3, kind='standardized') True