Wrote the progress of making the x-axis, y-axis, and plots of a scatter plot in planning_scatter.md

This commit is contained in:
kated
2026-03-11 11:07:37 -04:00
parent 2b2533ba0a
commit df184b3ae9
3 changed files with 37 additions and 3 deletions

View File

@@ -4,9 +4,24 @@
- Draw the axes.
- Draw the x-axis.
- Draw the line.
- ...
- flip 180 degrees
- Move back to left side of line
- flip 180 degrees
- repeat the following for how many x-values in x list:
- moves a specific x-value from x list and draws tick at that spot
- goes back to beginning of axis
- Draw the y-axis.
- Draw the line.
- ...
- flip 180 degrees
- Move back to bottom of line
- flip 180 degrees
- repeat the following for how many y-values in y list:
- moves a specific y-value from y list and draws tick at that spot
- goes back to beginning of axis
- Plot the points.
- ...
- repeat the following for how many x/y-values in both the x and y lists:
- moves x-value and y-value
- plot point
- move back to origin