Various functions were written in regards to

setting up the scatter plot functionality.

For checkpoint 2, this was easily the most difficult task done thus far, and required a significant amount of
hand-holding to get through. For the most part, anytime I got stuck, I had no idea how to proceed because I did not
fully grasp what was being asked. I was able to achieve some head way with online forums, but for the most part needed
to have one-on-one assistance.
This commit is contained in:
Justin Toombs 2023-08-03 12:31:37 -04:00
parent f80bbcf1c0
commit aa3d609973
2 changed files with 38 additions and 31 deletions

View File

@ -21,14 +21,14 @@ test(minimum, [[0, 1, 2, 3]], 0)
test(minimum, [[-10, -20, -30]], -30) test(minimum, [[-10, -20, -30]], -30)
test(bounds, [[0, 1, 2, 3]], [0, 3]) test(bounds, [[0, 1, 2, 3]], [0, 3])
test(bounds, [[-10, -20, -30]], [-30, -10]) test(bounds, [[-10, -20, -30]], [-30, -10])
test(clamp, [[10, 0, 100]], 10) test(clamp, [10, 0, 100], 10)
test(clamp, [[-10, 0, 100]], 0) test(clamp, [-10, 0, 100], 0)
test(clamp, [[104, 0, 100]], 100) test(clamp, [104, 0, 100], 100)
test(ratio, [[5, 0, 10]], 0.5) test(ratio, [5, 0, 10], 0.5)
test(ratio, [[167, 100, 200]], 0.67) test(ratio, [167, 100, 200], 0.67)
test(ratio, [[8, 10, 0]], 0.2) test(ratio, [8, 10, 0], 0.2)
test(ratio, [[4, 10, 20]], 0.0) test(ratio, [4, 10, 20], 0.0)
test(scale, [[4, 0, 10, 0, 100]], 40) test(scale, [4, 0, 10, 0, 100], 40)
test(scale, [[180, 120, 240, 0, 100]], 50) test(scale, [180, 120, 240, 0, 100], 50)
test(get_x_values, [[[0, 5], [1, 5], [2, 5]]], [0, 1, 2]) 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])

View File

@ -5,39 +5,46 @@
# None of them are finished; this is your job! # None of them are finished; this is your job!
def maximum(data): def maximum(data):
"Returns the largest number in data" highest = None
raise NotImplementedError for number in data:
if highest is None:
highest = number
if number > highest:
highest = number
return highest
def minimum(data): def minimum(data):
"Returns the smallest number in data" lowest = None
raise NotImplementedError for number in data:
if lowest is None:
lowest = number
if number < lowest:
lowest = number
return lowest
def bounds(data): def bounds(data):
"Returns a list of the smallest and largest numbers in data" return [minimum(data), maximum(data)]
raise NotImplementedError
def clamp(value, low, high): def clamp(value, low, high):
"""Clamps a value to a range from low to high. return maximum([low, minimum([value, high])])
Returns value if it is between low and high.
If value is lower than low, returns low. If value is higher than high, returns high.
"""
raise NotImplementedError
def ratio(value, start, end): def ratio(value, start, end):
"""Returns a number from 0.0 to 1.0, representing how far along value is from start to end. unclamped_ratio=(value-start)/(end-start)
The return value is clamped to [0, 1], so even if value is lower than start, the return return clamp(unclamped_ratio, 0.0, 1.0)
value will not be lower than 0.0.
"""
raise NotImplementedError
def scale(value, domain_min, domain_max, range_min, range_max): def scale(value, domain_min, domain_max, range_min, range_max):
"Given a value within a domain, returns the scaled equivalent within range." scale_ratio=ratio(value, domain_min, domain_max)
raise NotImplementedError range_length = range_max - range_min
return range_min + scale_ratio * range_length
def get_x_values(points): def get_x_values(points):
"Returns the first value for each point in points." x_values=[]
raise NotImplementedError for x, y in points:
x_values.append(x)
return x_values
def get_y_values(points): def get_y_values(points):
"Returns the second value for each point in points." y_values=[]
raise NotImplementedError for x, y in points:
y_values.append(y)
return y_values