26
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Matplotlibでレーダーチャートを描く(16行)

Last updated at Posted at 2019-01-13

サンプル

radar.png

モチベーション

  • 公式のサンプルはうまくプロットできないし、コードが長くて死ぬ。
  • シンプルにレーダーチャートを描きたいだけなのに…。

コード

import matplotlib.pyplot as plt
import numpy as np

def plot_polar(labels, values, imgname):
    angles = np.linspace(0, 2 * np.pi, len(labels) + 1, endpoint=True)
    values = np.concatenate((values, [values[0]]))  # 閉じた多角形にする
    fig = plt.figure()
    ax = fig.add_subplot(111, polar=True)
    ax.plot(angles, values, 'o-')  # 外枠
    ax.fill(angles, values, alpha=0.25)  # 塗りつぶし
    ax.set_thetagrids(angles[:-1] * 180 / np.pi, labels)  # 軸ラベル
    ax.set_rlim(0 ,250)
    fig.savefig(imgname)
    plt.close(fig)

labels = ['HP', 'Attack', 'Defense', 'Speed']
values = [155, 156, 188, 139]
plot_polar(labels, values, "radar.png")

要約すると

  1. 極座標のAxesオブジェクトを作って、
  2. そこにポリゴンを描画する。
  3. 塗りつぶしても良し。

凡例やタイトルの追加、複数データのプロットは通常のグラフ同様にできるので省略。

既存資料

26
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
26
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?