diff --git a/planning_scatter.md b/planning_scatter.md index d566f3f..1f1aad8 100644 --- a/planning_scatter.md +++ b/planning_scatter.md @@ -4,9 +4,20 @@ - Draw the axes. - Draw the x-axis. - Draw the line. - - ... + - Pick the maximum and minimum. + - Calculate the range (max-min). + - Determine the length of each interval. + - Make tick marks for each interval. + - Add a label for the axis. - Draw the y-axis. - Draw the line. - - ... + - Pick the maximum and minimum. + - Calculate the range (max-min). + - Determine the length of each interval. + - Make tick marks for each interval. + - Add a label for the axis. - Plot the points. - - ... + - For each point + - Move over by the x value. + - Move up by the y value. + - Return to origin so process can be repeated for each point.