散点图

import matplotlib.pyplot as plt

x=[1,2,3,4]

y=[3,6,1,8]

plt.scatter(x,y)

plt.xlabel("x")

plt.show()

结果

你可能感兴趣的:(散点图)