資料視覺化之matplotlib實戰:plt.xlim() ylim()函式 設定x軸y軸範圍座標

超級大洋蔥806發表於2020-10-03
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0.05,10,1000)
y = np.random.rand(1000)

plt.scatter(x,y,label="scatter figure")

plt.legend()

plt.xlim(1,10)
plt.ylim(0,1)

plt.show()

在這裡插入圖片描述

相關文章