Python Matplotlib
Matplotlib Scatter
Scatter plots
Matplotlib Scatter
Use the scatter() function to draw a scatter plot.
Scatter Plot
import matplotlib.pyplot as plt
x = [5, 7, 8, 7, 2, 17, 2, 9, 4, 11]
y = [99, 86, 87, 88, 111, 86, 103, 87, 94, 78]
plt.scatter(x, y)
plt.show()