python数据可视化

使用scatter()绘制一系列点 import matplotlib.pyplot as plt x_values = [1, 2, 3, 4, 5] y_values = [1, 4, 9, 16, 25] plt.scatter(x_values, y_values, s=100) plt.title("Square Numbers", fontsize=24) plt.xlabel(
相关文章
相关标签/搜索