This article introduces the python scatter function usage examples, the text of the sample code through the introduction of the very detailed, for everyone's learning or work has a certain reference learning value, the need for friends can refer to the following
Function function: find the relationship between variables.
Call signature: (x, y, c="b", label="scatter figure")
x: value on the x-axis
y: value on the y-axis
c: color of the markers in the scatterplot
label: label text that marks the content of the graphic
Code implementation.
import as plt import numpy as np x = (0.05, 10, 1000) y = (1000) (x, y, label="scatter figure") () ()
in the end
This is the whole content of this article.