グリッド間隔を変更し、Matplotlibで目盛りラベルを指定します


84

グリッドプロットでカウントをプロットしようとしていますが、どうすればよいかわかりません。したい:

  1. 5の間隔で点線のグリッドがある

  2. メジャーティックラベルを20ごとにのみ持つ

  3. ティックをプロットの外側に配置したいと思います。

  4. それらのグリッド内に「カウント」を含める

ここここのような潜在的な重複をチェックしましたが、それを理解することができませんでした。

これは私のコードです。

import matplotlib.pyplot as plt
from matplotlib.ticker import MultipleLocator, FormatStrFormatter

for key, value in sorted(data.items()):
    x = value[0][2]
    y = value[0][3]
    count = value[0][4]

    fig = plt.figure()
    ax = fig.add_subplot(111)

    ax.annotate(count, xy = (x, y), size = 5)
    # Overwrites and I only get the last data point

    plt.close()
    # Without this, I get "fail to allocate bitmap" error

plt.suptitle('Number of counts', fontsize = 12)
ax.set_xlabel('x')
ax.set_ylabel('y')
plt.axes().set_aspect('equal')

plt.axis([0, 1000, 0, 1000])
# This gives an interval of 200

majorLocator   = MultipleLocator(20)
majorFormatter = FormatStrFormatter('%d')
minorLocator   = MultipleLocator(5)
# I want minor grid to be 5 and major grid to be 20
plt.grid()

filename = 'C:\Users\Owl\Desktop\Plot.png'
plt.savefig(filename, dpi = 150)
plt.close()

これは私が得るものです。

これは私が得るものです。

また、データポイントを上書きする問題もあります。誰かがこの問題で私を助けてくれますか?

回答:


194

コードにはいくつかの問題があります。

最初に大きなもの:

  1. あなたのループ→プットの反復ごとに新たな数字と新しい軸を作成しているfig = plt.figureax = fig.add_subplot(1,1,1)、ループの外に。

  2. ロケーターは使用しないでください。正しいキーワードax.set_xticks()を使用ax.grid()して関数を呼び出します。

  3. plt.axes()あなたと一緒に新しい軸を再び作成しています。を使用しax.set_aspect('equal')ます。

些細なこと:MATLABのような構文plt.axis()を目的の構文と混合しないでください。使用ax.set_xlim(a,b)してax.set_ylim(a,b)

これは、実用的な最小限の例である必要があります。

import numpy as np
import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)

# Major ticks every 20, minor ticks every 5
major_ticks = np.arange(0, 101, 20)
minor_ticks = np.arange(0, 101, 5)

ax.set_xticks(major_ticks)
ax.set_xticks(minor_ticks, minor=True)
ax.set_yticks(major_ticks)
ax.set_yticks(minor_ticks, minor=True)

# And a corresponding grid
ax.grid(which='both')

# Or if you want different settings for the grids:
ax.grid(which='minor', alpha=0.2)
ax.grid(which='major', alpha=0.5)

plt.show()

出力は次のとおりです。

結果


2
ご回答ありがとうございます!あなたは私の問題を解決しました!ティックを外側に設定するには、ax.tick_params(which = 'both'、direction = 'out')を追加する必要がありました。
フクロウ

33

ティックを明示的に設定するのではなく、ケイデンスを設定する、MaxNoeの答えの微妙な代替手段。

import matplotlib.pyplot as plt
from matplotlib.ticker import (AutoMinorLocator, MultipleLocator)

fig, ax = plt.subplots(figsize=(10, 8))

# Set axis ranges; by default this will put major ticks every 25.
ax.set_xlim(0, 200)
ax.set_ylim(0, 200)

# Change major ticks to show every 20.
ax.xaxis.set_major_locator(MultipleLocator(20))
ax.yaxis.set_major_locator(MultipleLocator(20))

# Change minor ticks to show every 5. (20/4 = 5)
ax.xaxis.set_minor_locator(AutoMinorLocator(4))
ax.yaxis.set_minor_locator(AutoMinorLocator(4))

# Turn grid on for both major and minor ticks and style minor slightly
# differently.
ax.grid(which='major', color='#CCCCCC', linestyle='--')
ax.grid(which='minor', color='#CCCCCC', linestyle=':')

Matplotlibカスタムグリッド


ありがとう!これははるかに実用的です。
M.カ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.