python-scatter-plot

Python Scatter plot using matplotlib - pyplot module combine with numpy for line of best fit.

plt.scatter(x, y)
plt.plot(x, m*x+b)
plt.show()

GitHub

View Github