Machine learning / Scatter Plot

It is a type of plot or mathematical diagram using Cartesian coordinates to display values for typically two variables for a set of data.
Other Names: Scatter Plot / graph / diagram / scattergram / mathematical diagram.

Statistical Calculation Python Program Output
Scatter Plot import matplotlib.pyplot as mplobject
x = [1,3,5,7,9,11]
y = [2,4,6,8,10,12]
mplobject.scatter(x, y)
mplobject.show()
matplotlib.collections.PathCollection object at 0x08ACDE20>

Histogram


Home     Back