generated from mwc/lab_scatter
I could probably draw the x and y axis right now but i think plotting the data would be a little more difficult
19 lines
659 B
Markdown
19 lines
659 B
Markdown
# Planning the scatter plot
|
|
|
|
- Draw a scatter plot.
|
|
- Draw the axes.
|
|
- Draw the x-axis.
|
|
- Draw the line.
|
|
- Label the x-axis
|
|
- Draw ticks at the minimum and maximum values, and evenly-spaced ticks in between
|
|
- Scale the ticks based on the bouns of the data
|
|
- Draw the y-axis.
|
|
- Draw the line.
|
|
- Label the y-axis
|
|
- Draw ticks at the minimum and maximum values, and evenly-spaced ticks in between
|
|
- Scale the ticks based on the bouns of the data
|
|
- Plot the points.
|
|
- Each data point is drawn on the scatter plot as a dot.
|
|
- The size and color of dots can be adjusted using optional arguments.
|
|
|