Machine Learning - Scatter Plot

Scatter Plot

The scatter structure is a diagram in which each value in the data set is represented by a dot.

x = [5,7,8,7,2,17,2,9,4,11,12,9,6] y = [99,86,87,88,111,86,103,87,94,78,77,85,86]

The Matplotlib module has a way to draw scatter pieces, requiring two identical members of the same length, one with x axis values, and one y axis values:

Example

In a computer sense, a data set is any data collection. It can be anything from a program to a complete website.

Example of an array:
import matplotlib.pyplot as plt

x = [5,7,8,7,2,17,2,9,4,11,12,9,6]
y = [99,86,87,88,111,86,103,87,94,78,77,85,86]

plt.scatter(x, y)
plt.show()