From 655387df8fee9062a516b3ab92adc1a7b01f7191 Mon Sep 17 00:00:00 2001 From: ltcptgeneral <35508619+ltcptgeneral@users.noreply.github.com> Date: Tue, 27 Nov 2018 23:15:10 -0600 Subject: [PATCH] analysis.py - v 1.0.6.001 changelog: - corrected __all__ to contain all of the functions --- data analysis/analysis.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/data analysis/analysis.py b/data analysis/analysis.py index 44611d65..45c65527 100644 --- a/data analysis/analysis.py +++ b/data analysis/analysis.py @@ -8,9 +8,11 @@ #setup: -__version__ = "1.0.6.000" +__version__ = "1.0.6.001" __changelog__ = """changelog: +1.0.6.001: + - corrected __all__ to contain all of the functions 1.0.6.000: - added calc_overfit, which calculates two measures of overfit, error and performance - added calculating overfit to optimize_regression @@ -83,6 +85,9 @@ __all__ = [ 'exp_regression', 'r_squared', 'rms', + 'calc_overfit', + 'strip_data', + 'optimize_regression', 'basic_analysis', #all statistics functions left out due to integration in other functions ]