Pythonでグラフを描画する場合に、matplotlibというライブラリがよく使われます。
折れ線グラフや散布図などを描くことができ、詳細に表示設定をすることもできます。
グラフの描画
[コード]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| # 方程式を設定するためにNumpyをインポート import numpy as np # グラフを描画するためにmatplotlibをインポート import matplotlib.pyplot as plt
# x軸の領域と精度を設定 x1 = np.arange(-3, 3, 0.1) # 方程式のy値を設定 y1 = np.sin(x1)
# x値とy値ともにランダムな値を設定 x2 = np.random.rand(100) * 6 -3 y2 = np.random.rand(100) * 6 -3
# figureオブジェクトを作成 plt.figure()
# 1つのグラフで表示する設定 plt.subplot(1, 1, 1)
# 線形とマーカー、ラベルを設定しグラフを描画する plt.plot(x1, y1, marker='o', markersize=5, label='line')
# 散布図を描画する plt.scatter(x2, y2, label='scatter')
# 凡例表示を設定 plt.legend()
# グリッド線を表示 plt.grid(True)
# グラフ表示 plt.show()
|
[実行結果]