mirror of https://github.com/mahmoud/boltons.git
add __all__ to statsutils
This commit is contained in:
parent
22b2fd2f3c
commit
622fff719f
|
@ -39,6 +39,9 @@ four moments, so generalize wisely. (And read up on robust statistics
|
|||
and scipy.stats)
|
||||
"""
|
||||
|
||||
__all__ = ['mean', 'median', 'variance', 'std_dev', 'rel_std_dev',
|
||||
'median_abs_dev', 'skewness', 'kurtosis', 'trim']
|
||||
|
||||
|
||||
def mean(vals):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue