From 94909a164bff1f45b34972431b88525f80af4a1d Mon Sep 17 00:00:00 2001 From: tsmith37 Date: Sat, 4 Oct 2025 13:39:20 -0400 Subject: [PATCH] wrote the break down of how to create a scatter plot I could probably draw the x and y axis right now but i think plotting the data would be a little more difficult --- planning_scatter.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/planning_scatter.md b/planning_scatter.md index d566f3f..2bc917d 100644 --- a/planning_scatter.md +++ b/planning_scatter.md @@ -4,9 +4,15 @@ - Draw the axes. - Draw the x-axis. - Draw the line. - - ... + - Label the x-axis + - Draw ticks at the minimum and maximum values, and evenly-spaced ticks in between + - Scale the ticks based on the bouns of the data - Draw the y-axis. - Draw the line. - - ... + - Label the y-axis + - Draw ticks at the minimum and maximum values, and evenly-spaced ticks in between + - Scale the ticks based on the bouns of the data - Plot the points. - - ... + - Each data point is drawn on the scatter plot as a dot. + - The size and color of dots can be adjusted using optional arguments. +