Add print statement to debug scatterplot

This commit is contained in:
Chris Proctor 2025-06-29 07:03:07 -04:00
parent 9836b40408
commit 03eeda7ce9
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ def draw_points(data, color, size):
y = point[1]
x_scaled = scale(x, xmin, xmax, ymin, ymax)
y_scaled = scale(y, xmin, xmax, ymin, ymax)
print(f"Printing point onto the screen at ({x_scaled}, {y_scaled})")
draw_point(x_scaled, y_scaled, color, size)