Files
lab_scatter/planning_scatter.md
Cory Dean Chung c5b56bd5e4 I completed checkpoint 1.
I think I could write the majority of the scatter plot function if
I had to, and I feel pretty confident I could google whatever I would
need to finish it. I feel the idea of breaking down a problem into
smaller ones, and also some of the problems we've done, overlap well
with my math teaching background.
2023-08-11 21:19:17 -04:00

20 lines
612 B
Markdown

# Planning the scatter plot
- Draw a scatter plot.
- Draw the axes.
- Draw the x-axis.
- Draw the line.
- Determine minimum and maximum x-values.
- Create 4 evenly spaced tick marks between the minimum and maximum x-values.
- Label the x-axis.
- Draw the y-axis.
- Draw the line.
- Determine minimum and maximum y-values.
- Create 4 evenly spaced tick marks between the minimum and maximum y-values.
- Label the y-axis.
- Plot the points.
- For each point:
- Locate the x-coordinate.
- Locate the y-coordinate.
- Plot the point.