I added steps to the list for how to make a scatterplot.

I think I would be able to make most of the scatterplot now, but
I guess I am maybe unsure how the tickmarks and automatic scaling
are accomplished. It bothers me that the minimum and maximum on the
axes are the minumum and maximum values from the ordered pairs.
This commit is contained in:
root 2024-09-28 21:33:54 -04:00
parent 6f27782da2
commit f3336eb9b6
1 changed files with 7 additions and 3 deletions

View File

@ -4,9 +4,13 @@
- Draw the axes. - Draw the axes.
- Draw the x-axis. - Draw the x-axis.
- Draw the line. - Draw the line.
- ... - Determine the minimum and maximum values.
- Draw the ticks.
- Label the ticks.
- Draw the y-axis. - Draw the y-axis.
- Draw the line. - Draw the line.
- ... - Determine the minimum and maxiumum values.
- Draw the ticks.
- Label the ticks.
- Plot the points. - Plot the points.
- ... - Draw dots for each ordered pair.