generated from mwc/lab_scatter
20 lines
612 B
Markdown
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.
|