mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
f72d8457a7
* feat: created kivy gui boilerplate * migrated docker base image to debian Signed-off-by: ltcptgeneral <learthurgo@gmail.com> * migrated to ubuntu Signed-off-by: ltcptgeneral <learthurgo@gmail.com> * fixed issues Signed-off-by: ltcptgeneral <learthurgo@gmail.com> * fix: docker build? * fix: use ubuntu bionic * fix: get kivy installed * @ltcptgeneral can't spell * optim dockerfile for not installing unused packages * install basic stuff while building the container * use prebuilt image for development * install pylint on base image * rename and use new kivy * tests: added tests for Array and CorrelationTest Both are not working due to errors * fix: Array no longer has *args and CorrelationTest functions no longer have self in the arguments * use new thing * use 20.04 base * symlink pip3 to pip * use pip instead of pip3 * tra_analysis v 2.1.0-alpha.2 SVM v 1.0.1 added unvalidated SVM unit tests Signed-off-by: ltcptgeneral <learthurgo@gmail.com> * fixed version number Signed-off-by: ltcptgeneral <learthurgo@gmail.com> * tests: added tests for ClassificationMetric * partially fixed and commented out svm unit tests * fixed some SVM unit tests * added installing pytest to devcontainer.json * fix: small fixes to KNN Namely, removing self from parameters and passing correct arguments to KNeighborsClassifier constructor * fix, test: Added tests for KNN and NaiveBayes. Also made some small fixes in KNN, NaiveBayes, and RegressionMetric * test: finished unit tests except for StatisticalTest Also made various small fixes and style changes * StatisticalTest v 1.0.1 * fixed RegressionMetric unit test temporarily disabled CorrelationTest unit tests * tra_analysis v 2.1.0-alpha.3 * readded __all__ * fix: floating point issues in unit tests for CorrelationTest Co-authored-by: AGawde05 <agawde05@gmail.com> Co-authored-by: ltcptgeneral <learthurgo@gmail.com> Co-authored-by: Dev Singh <dev@devksingh.com> Co-authored-by: jzpan1 <panzhenyu2014@gmail.com>
152 lines
3.2 KiB
Python
152 lines
3.2 KiB
Python
# Titan Robotics Team 2022: Array submodule
|
|
# Written by Arthur Lu
|
|
# Notes:
|
|
# this should be imported as a python module using 'from tra_analysis import Array'
|
|
# setup:
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
__changelog__ = """changelog:
|
|
1.0.0:
|
|
- ported analysis.Array() here
|
|
"""
|
|
|
|
__author__ = (
|
|
"Arthur Lu <learthurgo@gmail.com>",
|
|
)
|
|
|
|
import numpy as np
|
|
|
|
class Array(): # tests on nd arrays independent of basic_stats
|
|
|
|
def __init__(self, narray):
|
|
|
|
self.array = np.array(narray)
|
|
|
|
def __str__(self):
|
|
|
|
return str(self.array)
|
|
|
|
def elementwise_mean(self, axis = 0): # expects arrays that are size normalized
|
|
|
|
return np.mean(self.array, axis = axis)
|
|
|
|
def elementwise_median(self, axis = 0):
|
|
|
|
return np.median(self.array, axis = axis)
|
|
|
|
def elementwise_stdev(self, axis = 0):
|
|
|
|
return np.std(self.array, axis = axis)
|
|
|
|
def elementwise_variance(self, axis = 0):
|
|
|
|
return np.var(self.array, axis = axis)
|
|
|
|
def elementwise_npmin(self, axis = 0):
|
|
return np.amin(self.array, axis = axis)
|
|
|
|
|
|
def elementwise_npmax(self, axis = 0):
|
|
return np.amax(self.array, axis = axis)
|
|
|
|
def elementwise_stats(self, axis = 0):
|
|
|
|
_mean = self.elementwise_mean(axis = axis)
|
|
_median = self.elementwise_median(axis = axis)
|
|
_stdev = self.elementwise_stdev(axis = axis)
|
|
_variance = self.elementwise_variance(axis = axis)
|
|
_min = self.elementwise_npmin(axis = axis)
|
|
_max = self.elementwise_npmax(axis = axis)
|
|
|
|
return _mean, _median, _stdev, _variance, _min, _max
|
|
|
|
def __getitem__(self, key):
|
|
|
|
return self.array[key]
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
self.array[key] == value
|
|
|
|
def normalize(self, array):
|
|
|
|
a = np.atleast_1d(np.linalg.norm(array))
|
|
a[a==0] = 1
|
|
return array / np.expand_dims(a, -1)
|
|
|
|
def __add__(self, other):
|
|
|
|
return self.array + other.array
|
|
|
|
def __sub__(self, other):
|
|
|
|
return self.array - other.array
|
|
|
|
def __neg__(self):
|
|
|
|
return -self.array
|
|
|
|
def __abs__(self):
|
|
|
|
return abs(self.array)
|
|
|
|
def __invert__(self):
|
|
|
|
return 1/self.array
|
|
|
|
def __mul__(self, other):
|
|
|
|
return self.array.dot(other.array)
|
|
|
|
def __rmul__(self, other):
|
|
|
|
return self.array.dot(other.array)
|
|
|
|
def cross(self, other):
|
|
|
|
return np.cross(self.array, other.array)
|
|
|
|
def sort(self, array): # depreciated
|
|
warnings.warn("Array.sort has been depreciated in favor of Sort")
|
|
array_length = len(array)
|
|
if array_length <= 1:
|
|
return array
|
|
middle_index = int(array_length / 2)
|
|
left = array[0:middle_index]
|
|
right = array[middle_index:]
|
|
left = self.sort(left)
|
|
right = self.sort(right)
|
|
return self.__merge(left, right)
|
|
|
|
|
|
def __merge(self, left, right):
|
|
sorted_list = []
|
|
left = left[:]
|
|
right = right[:]
|
|
while len(left) > 0 or len(right) > 0:
|
|
if len(left) > 0 and len(right) > 0:
|
|
if left[0] <= right[0]:
|
|
sorted_list.append(left.pop(0))
|
|
else:
|
|
sorted_list.append(right.pop(0))
|
|
elif len(left) > 0:
|
|
sorted_list.append(left.pop(0))
|
|
elif len(right) > 0:
|
|
sorted_list.append(right.pop(0))
|
|
return sorted_list
|
|
|
|
def search(self, arr, x):
|
|
return self.__search(arr, 0, len(arr) - 1, x)
|
|
|
|
def __search(self, arr, low, high, x):
|
|
if high >= low:
|
|
mid = (high + low) // 2
|
|
if arr[mid] == x:
|
|
return mid
|
|
elif arr[mid] > x:
|
|
return binary_search(arr, low, mid - 1, x)
|
|
else:
|
|
return binary_search(arr, mid + 1, high, x)
|
|
else:
|
|
return -1 |