2020-10-05 03:19:18 +00:00
|
|
|
# Titan Robotics Team 2022: tra_analysis package
|
2020-10-15 19:33:13 +00:00
|
|
|
# Written by Arthur Lu, Jacob Levine, Dev Singh, and James Pan
|
2020-10-05 03:19:18 +00:00
|
|
|
# Notes:
|
|
|
|
# this should be imported as a python package using 'import tra_analysis'
|
|
|
|
# this should be included in the local directory or environment variable
|
|
|
|
# this module has been optimized for multhreaded computing
|
|
|
|
# current benchmark of optimization: 1.33 times faster
|
|
|
|
# setup:
|
|
|
|
|
2021-01-27 04:32:02 +00:00
|
|
|
__version__ = "3.0.0-alpha.4"
|
2020-10-05 03:19:18 +00:00
|
|
|
|
|
|
|
# changelog should be viewed using print(analysis.__changelog__)
|
|
|
|
__changelog__ = """changelog:
|
2021-01-27 04:32:02 +00:00
|
|
|
3.0.0-alpha.4:
|
|
|
|
- changed version to 3 because of significant changes
|
|
|
|
- added backwards compatibility inport of analysis
|
2021-01-27 03:46:29 +00:00
|
|
|
2.1.0-alpha.3:
|
|
|
|
- fixed indentation in meta data
|
|
|
|
2.1.0-alpha.2:
|
|
|
|
- updated SVM import
|
|
|
|
2.1.0-alpha.1:
|
|
|
|
- moved multiple submodules under analysis to their own modules/files
|
|
|
|
- added header, __version__, __changelog__, __author__, __all__ (unpopulated)
|
2020-10-05 03:19:18 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = (
|
|
|
|
"Arthur Lu <learthurgo@gmail.com>",
|
2021-01-27 03:46:29 +00:00
|
|
|
"Jacob Levine <jlevine@imsa.edu>",
|
|
|
|
"Dev Singh <dev@devksingh.com>",
|
|
|
|
"James Pan <zpan@imsa.edu>"
|
2020-10-05 03:19:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
]
|
|
|
|
|
2021-01-27 04:08:27 +00:00
|
|
|
from . import Analysis as Analysis
|
2021-01-27 04:32:02 +00:00
|
|
|
from . import Analysis as analysis
|
2020-10-05 03:19:18 +00:00
|
|
|
from .Array import Array
|
|
|
|
from .ClassificationMetric import ClassificationMetric
|
|
|
|
from . import CorrelationTest
|
2021-01-27 04:08:27 +00:00
|
|
|
from .equation import Expression
|
2020-10-05 03:19:18 +00:00
|
|
|
from . import Fit
|
|
|
|
from . import KNN
|
|
|
|
from . import NaiveBayes
|
|
|
|
from . import RandomForest
|
|
|
|
from .RegressionMetric import RegressionMetric
|
|
|
|
from . import Sort
|
|
|
|
from . import StatisticalTest
|
2021-01-27 03:46:29 +00:00
|
|
|
from . import SVM
|