web-dev-qa-db-ja.com

matplotlibの破線のダッシュの間隔を変更する

Pythonでは、matplotlibを使用して、たとえば次のコマンドを使用して、さまざまな線種のダッシュの距離を変更する方法があります。

plt.plot(x,y,linestyle='--')
22
grover

Plotコマンド内でdashes=(length, interval space)引数を使用して、ダッシュの長さ/スペースを直接指定できます。

import matplotlib.pyplot as plt

fig,ax = plt.subplots()
ax.plot([0, 1], [0, 1], linestyle='--', dashes=(5, 1)) #length of 5, space of 1
ax.plot([0, 1], [0, 2], linestyle='--', dashes=(5, 5)) #length of 5, space of 5
ax.plot([0, 1], [0, 3], linestyle='--', dashes=(5, 10)) #length of 5, space of 10
ax.plot([0, 1], [0, 4], linestyle='--', dashes=(5, 20)) #length of 5, space of 20

lines

40
gcalmettes