add __all__ to statsutils

This commit is contained in:
Mahmoud Hashemi 2013-03-25 19:03:09 -07:00
parent 22b2fd2f3c
commit 622fff719f
1 changed files with 3 additions and 0 deletions

View File

@ -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):
"""