W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
demo_python_ml_scatterplot_1.py:
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()
[email protected]
:/home/python#python demo_python_ml_scatterplot_1.py