From dd649db243431429aae475bd5ad8004e7c4a395b Mon Sep 17 00:00:00 2001 From: ltcptgeneral <35508619+ltcptgeneral@users.noreply.github.com> Date: Tue, 5 Feb 2019 09:50:10 -0600 Subject: [PATCH] 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 --- data analysis/analysis.py | 6 ++++-- data analysis/superscript.py | 26 +++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/data analysis/analysis.py b/data analysis/analysis.py index b8e68c78..6fc315a3 100644 --- a/data analysis/analysis.py +++ b/data analysis/analysis.py @@ -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', diff --git a/data analysis/superscript.py b/data analysis/superscript.py index 96a56caa..2f2a1fa0 100644 --- a/data analysis/superscript.py +++ b/data analysis/superscript.py @@ -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 , " + "Jacob Levine ," + ) + import analysis import titanlearn -import visualization \ No newline at end of file +import visualization + +data = analysis.load_csv("data/data.csv") \ No newline at end of file