generated from mwc/lab_scatter
	I could be able to write the x and y axis, but I don't know how to draw the dots or the minimum and maximum ticks for the axes yet.
		
			
				
	
	
		
			16 lines
		
	
	
		
			486 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			486 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Planning the scatter plot
 | 
						|
 | 
						|
- Draw a scatter plot.
 | 
						|
  - Draw the axes.
 | 
						|
    - Draw the x-axis.
 | 
						|
      - Draw the line.
 | 
						|
      - Draw ticks that are evenly spaced by a specific number.
 | 
						|
        - Find the minimum and maximum x value.
 | 
						|
    - Draw the y-axis.
 | 
						|
      - Draw the line.
 | 
						|
      - Draw ticks that are evenly spaced by a specific number.
 | 
						|
        - Find the minimum and maximum y value.
 | 
						|
  - Plot the points.
 | 
						|
    - Assign coordinates to each point.
 | 
						|
      - Collect data for coordinates.
 |