項目 數據可視化1

1 import matplotlib.pyplot as plt 2 3 squares=[1,4,9,16,25] 4 plt.plot(squares,linewidth=5) 5 # 設置圖表標題,並給座標軸加上標籤 6 plt.title("Squares Numbers",fontsize=24) 7 plt.xlabel("Value",fontsize=14) 8
相關文章
相關標籤/搜索