analysis.py - v 1.0.6.001

changelog:
    - corrected __all__ to contain all of the functions
This commit is contained in:
ltcptgeneral 2018-11-27 23:15:10 -06:00
parent 7c3cc13014
commit 655387df8f

View File

@ -8,9 +8,11 @@
#setup: #setup:
__version__ = "1.0.6.000" __version__ = "1.0.6.001"
__changelog__ = """changelog: __changelog__ = """changelog:
1.0.6.001:
- corrected __all__ to contain all of the functions
1.0.6.000: 1.0.6.000:
- added calc_overfit, which calculates two measures of overfit, error and performance - added calc_overfit, which calculates two measures of overfit, error and performance
- added calculating overfit to optimize_regression - added calculating overfit to optimize_regression
@ -83,6 +85,9 @@ __all__ = [
'exp_regression', 'exp_regression',
'r_squared', 'r_squared',
'rms', 'rms',
'calc_overfit',
'strip_data',
'optimize_regression',
'basic_analysis', 'basic_analysis',
#all statistics functions left out due to integration in other functions #all statistics functions left out due to integration in other functions
] ]