generated from mwc/lab_scatter
28 lines
876 B
Markdown
28 lines
876 B
Markdown
# Planning the scatter plot
|
|
|
|
- Draw a scatter plot.
|
|
- 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
|