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(
相關文章
相關標籤/搜索