Pythonでy軸の範囲をどう設定しますか?

matplotlibライブラリのylim()関数を使用して、y軸の範囲を設定することができます。例を以下に示します:

import matplotlib.pyplot as plt

# 创建一个示例数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]

plt.plot(x, y)

# 设置y轴范围为0到40
plt.ylim(0, 40)

plt.show()

上記の例では、plt.ylim(0, 40)を使用してy軸の範囲を0から40に設定しました。データと要件に応じて適切なy軸の範囲を設定することができます。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds