scatterplot.py

This commit is contained in:
njmason2
2025-10-12 18:24:23 -04:00
parent 1c4cee2704
commit 640ff70865
3 changed files with 43 additions and 16 deletions

View File

@@ -15,7 +15,7 @@ def test(function, arguments, expected):
if observed != expected:
args = ', '.join(str(arg) for arg in arguments)
print(f"Error: Expected {function}({args}) to equal {expected}, but it was {observed}")
test(maximum, [[0, 1, 2, 3]], 3)
test(maximum, [[-10, -20, -30]], -10)
@@ -33,4 +33,5 @@ test(ratio, [4, 10, 20], 0.0)
test(scale, [4, 0, 10, 0, 100], 40)
test(scale, [180, 120, 240, 0, 100], 50)
test(get_x_values, [[[0, 5], [1, 5], [2, 5]]], [0, 1, 2])
test(get_y_values, [[[0, 5], [1, 5], [2, 5]]], [5, 5, 5])
test(get_y_values, [[[0, 5], [1, 5], [2, 5]]], [5, 5, 5])