Scatter Plot
Create a Python program that displays a scatter plot of two columns. For each row in a dataset the program should:
- get two values, x and y, from the spreadsheet (one value from each column being plotted)
- normalize both values
- scale both values to the plotting range (use the width of the plot for x values and height for y values)
- draw a circle at the scaled location
Challenge
Add axes to the the plot.
- Draw lines for both the x and y axes
- Label the axes with the column names
- Draw tick marks on both the x and y axes
- Label the tick marks with their value