From 8bfbf3202721b6876b860c65f4dfee5f45cb385a Mon Sep 17 00:00:00 2001 From: caglazir Date: Mon, 6 Oct 2025 09:57:36 -0400 Subject: [PATCH] I added the steps I follow for scatterplots. Checkpoint 1: Although I am familiar with utilizing the scatterplots, I am sure some parts of the coding that makes the scatterplot will be confusing. I am not very strong in creating loops in a logical way so probably that will be where I might get stuck, if there are any. --- planning_scatter.md | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/planning_scatter.md b/planning_scatter.md index d566f3f..605062d 100644 --- a/planning_scatter.md +++ b/planning_scatter.md @@ -1,12 +1,20 @@ # Planning the scatter plot - Draw a scatter plot. +- Title the plot/graph - Draw the axes. - - Draw the x-axis. - - Draw the line. - - ... - - Draw the y-axis. - - Draw the line. - - ... + - Label the axes. + - Draw the x-axis. + - Draw the line. + - Determine the step-size + - Place the values along the x-axis + - Draw the y-axis. + - Draw the line. + - Determine the step-size + - Place the values aloing the y-axis - Plot the points. - - ... + - Match the corresponding x and y values. + - Place markers at the intersection of the values. + - Add legends, if needed. + +