analysis.py v 1.0.8.005, superscript.py v 1.0.1.000

changelog analysis.py:
- minor fixes
changelog superscript.py:
- added data reading from file
- added superstructure to code
This commit is contained in:
ltcptgeneral 2019-02-05 09:50:10 -06:00
parent 9016bf296a
commit dd649db243
2 changed files with 29 additions and 3 deletions

View File

@ -7,10 +7,12 @@
#number of easter eggs: 2
#setup:
__version__ = "1.0.8.004"
__version__ = "1.0.8.005"
#changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog:
1.0.8.005:
- minor fixes
1.0.8.004:
- removed a few unused dependencies
1.0.8.003:
@ -112,7 +114,7 @@ __all__ = [
'z_score',
'z_normalize',
'stdev_z_split',
'histo_analysis', #histo_analysis_old is intentionally left out as it has been depreciated since v 1.0.1.005
'histo_analysis',
'poly_regression',
'log_regression',
'exp_regression',

View File

@ -1,3 +1,27 @@
#Titan Robotics Team 2022: Data Analysis Module
#Written by Arthur Lu & Jacob Levine
#Notes:
#setup:
__version__ = "1.0.1.000"
#changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog:
1.0.1.000:
- added data reading from file
- added superstructure to code
1.0.0.000:
- added import statements (revolutionary)
"""
__author__ = (
"Arthur Lu <arthurlu@ttic.edu>, "
"Jacob Levine <jlevine@ttic.edu>,"
)
import analysis
import titanlearn
import visualization
data = analysis.load_csv("data/data.csv")