Python ylim()で棒グラフの最大値と最小値を表示するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
plt.ylim(最小値, 最大値)
ylim()を使って、y軸の最大値と最小値を設定します。
使用例
import matplotlib.pyplot as plt x = [11, 22, 33, 44, 55, 6] y = [10, 54, 56, 19, 15, 7] plt.ylim(-2, 30) plt.bar(x, y) plt.show()