From 03eeda7ce9c1ee80397cc0947a2d87fa39414683 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Sun, 29 Jun 2025 07:03:07 -0400 Subject: [PATCH] Add print statement to debug scatterplot --- scatterplot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scatterplot.py b/scatterplot.py index f807714..3f65090 100644 --- a/scatterplot.py +++ b/scatterplot.py @@ -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)