From 4c13f3169c57a2456de5a02bb4a3460617a2212a Mon Sep 17 00:00:00 2001 From: kdang Date: Thu, 9 Oct 2025 09:44:58 -0400 Subject: [PATCH] I finished the list of things that need to be accomplished to make a scatter plot. I could be able to write the x and y axis, but I don't know how to draw the dots or the minimum and maximum ticks for the axes yet. --- planning_scatter.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/planning_scatter.md b/planning_scatter.md index d566f3f..bbb7f4d 100644 --- a/planning_scatter.md +++ b/planning_scatter.md @@ -4,9 +4,12 @@ - Draw the axes. - Draw the x-axis. - Draw the line. - - ... + - Draw ticks that are evenly spaced by a specific number. + - Find the minimum and maximum x value. - Draw the y-axis. - Draw the line. - - ... + - Draw ticks that are evenly spaced by a specific number. + - Find the minimum and maximum y value. - Plot the points. - - ... + - Assign coordinates to each point. + - Collect data for coordinates.