저는 현재 matplotlib.pyplot
그래프를 만드는 데 사용 하고 있으며 주요 격자 선은 단색과 검정색이고 작은 격자 선은 회색 또는 점선으로 표시하고 싶습니다.
그리드 속성에서 which=both/major/mine
, 색상 및 선 스타일은 단순히 선 스타일로 정의됩니다. 부선 스타일 만 지정하는 방법이 있습니까?
지금까지 내가 가지고있는 적절한 코드는
plt.plot(current, counts, 'rd', markersize=8)
plt.yscale('log')
plt.grid(b=True, which='both', color='0.65', linestyle='-')
답변
실제로 설정하는 것만 큼 간단 major
하고 minor
별도로 :
In [9]: plot([23, 456, 676, 89, 906, 34, 2345])
Out[9]: [<matplotlib.lines.Line2D at 0x6112f90>]
In [10]: yscale('log')
In [11]: grid(b=True, which='major', color='b', linestyle='-')
In [12]: grid(b=True, which='minor', color='r', linestyle='--')
작은 눈금이있는 문제는 작은 눈금 표시도 켜야한다는 것입니다. 위의 코드에서 이것은에 의해 수행 yscale('log')
되지만 plt.minorticks_on()
.
답변
간단한 DIY 방법은 그리드를 직접 만드는 것입니다.
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1,2,3], [2,3,4], 'ro')
for xmaj in ax.xaxis.get_majorticklocs():
ax.axvline(x=xmaj, ls='-')
for xmin in ax.xaxis.get_minorticklocs():
ax.axvline(x=xmin, ls='--')
for ymaj in ax.yaxis.get_majorticklocs():
ax.axhline(y=ymaj, ls='-')
for ymin in ax.yaxis.get_minorticklocs():
ax.axhline(y=ymin, ls='--')
plt.show()