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.
This commit is contained in:
caglazir
2025-10-06 09:57:36 -04:00
parent 0d8a301dbb
commit 8bfbf32027

View File

@@ -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.