Package statopy

Expand source code
# -*- coding: utf-8 -*-
from pkg_resources import DistributionNotFound, get_distribution

try:
    # Change here if project is renamed and does not equal the package name
    dist_name = __name__
    __version__ = get_distribution(dist_name).version
except DistributionNotFound:
    __version__ = "unknown"
finally:
    del get_distribution, DistributionNotFound

Sub-modules

statopy.statopy

Online statistics Credit for scalar algorithms to John D. Cook: https://www.johndcook.com/blog/skewness_kurtosis/