tra-analysis/data analysis/superscript.py
ltcptgeneral 1293de346e 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
2019-02-05 09:50:10 -06:00

27 lines
555 B
Python

#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")